Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
D
DD4hep
Manage
Activity
Members
Code
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
cepc
externals
mirroring
DD4hep
Commits
7374cce8
Commit
7374cce8
authored
7 years ago
by
Frank Gaede
Committed by
Frank Gaede
7 years ago
Browse files
Options
Downloads
Patches
Plain Diff
add example dumpDetectorData.py
parent
2cbda3e6
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
DDRec/python/dumpDetectorData.py
+115
-0
115 additions, 0 deletions
DDRec/python/dumpDetectorData.py
with
115 additions
and
0 deletions
DDRec/python/dumpDetectorData.py
0 → 100644
+
115
−
0
View file @
7374cce8
#!/bin/python
#==========================================================================
# AIDA Detector description implementation
#--------------------------------------------------------------------------
# Copyright (C) Organisation europeenne pour la Recherche nucleaire (CERN)
# All rights reserved.
#
# For the licensing terms see $DD4hepINSTALL/LICENSE.
# For the list of contributors see $DD4hepINSTALL/doc/CREDITS.
#
#==========================================================================
import
sys
,
errno
,
optparse
,
logging
def
dumpData
(
det
):
try
:
dat
=
DDRec
.
FixedPadSizeTPCData
(
det
)
print
dat
.
toString
()
except
:
pass
try
:
dat
=
DDRec
.
ZPlanarData
(
det
)
print
dat
.
toString
()
except
:
pass
try
:
dat
=
DDRec
.
ZDiskPetalsData
(
det
)
print
dat
.
toString
()
except
:
pass
try
:
dat
=
DDRec
.
ConicalSupportData
(
det
)
print
dat
.
toString
()
except
:
pass
try
:
dat
=
DDRec
.
LayeredCalorimeterData
(
det
)
print
dat
.
toString
()
except
:
pass
try
:
dat
=
DDRec
.
NeighbourSurfacesStruct
(
det
)
print
dat
.
toString
()
except
:
pass
logging
.
basicConfig
(
format
=
'
%(levelname)s: %(message)s
'
,
level
=
logging
.
DEBUG
)
parser
=
optparse
.
OptionParser
()
parser
.
formatter
.
width
=
132
parser
.
description
=
"
Dump detector data objects from DDRec
"
parser
.
add_option
(
"
-c
"
,
"
--compact
"
,
dest
=
"
compact
"
,
default
=
None
,
help
=
"
Define LCCDD style compact xml input
"
,
metavar
=
"
<FILE>
"
)
(
opts
,
args
)
=
parser
.
parse_args
()
if
opts
.
compact
is
None
:
logging
.
info
(
"
%s
"
,
parser
.
format_help
())
sys
.
exit
(
1
)
try
:
import
ROOT
from
ROOT
import
gROOT
gROOT
.
SetBatch
(
1
)
except
ImportError
,
X
:
logging
.
error
(
'
PyROOT interface not accessible: %s
'
,
str
(
X
))
logging
.
error
(
"
%s
"
,
parser
.
format_help
())
sys
.
exit
(
errno
.
ENOENT
)
try
:
import
DD4hep
except
ImportError
,
X
:
logging
.
error
(
'
dd4hep python interface not accessible: %s
'
,
str
(
X
))
logging
.
error
(
"
%s
"
,
parser
.
format_help
())
sys
.
exit
(
errno
.
ENOENT
)
#
try
:
import
DDRec
except
ImportError
,
X
:
logging
.
error
(
'
ddrec python interface not accessible: %s
'
,
str
(
X
))
logging
.
error
(
"
%s
"
,
parser
.
format_help
())
sys
.
exit
(
errno
.
ENOENT
)
#
DD4hep
.
setPrintLevel
(
DD4hep
.
OutputLevel
.
ERROR
)
logging
.
info
(
'
+++%s
\n
+++ Loading compact geometry:%s
\n
+++%s
'
,
120
*
'
=
'
,
opts
.
compact
,
120
*
'
=
'
)
description
=
DD4hep
.
Detector
.
getInstance
()
description
.
fromXML
(
opts
.
compact
)
## ------ loop over detectors and print their detector data objects
for
n
,
d
in
description
.
detectors
():
print
print
"
------------- detector :
"
,
d
.
name
()
print
det
=
description
.
detector
(
n
)
dumpData
(
det
)
##-----------------------------------------------------------------
logging
.
info
(
'
+++ Execution finished...
'
)
sys
.
exit
(
0
)
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment