CMS 3D CMS Logo

dump.py
Go to the documentation of this file.
1 import FWCore.ParameterSet.Config as cms
2 
3 process = cms.Process("DDCMSDetectorTest")
4 
5 process.source = cms.Source("EmptySource")
6 process.maxEvents = cms.untracked.PSet(
7  input = cms.untracked.int32(1)
8  )
9 
10 process.test = cms.EDAnalyzer("DDCMSDetector",
11  geomXMLFiles = cms.vstring('Geometry/CMSCommonData/data/materials.xml',
12  'Geometry/CMSCommonData/data/rotations.xml',
13  'Geometry/TrackerCommonData/data/pixbarmaterial.xml',
14  'Geometry/TrackerCommonData/data/pixbarladder.xml',
15  'Geometry/TrackerCommonData/data/pixbarladderfull.xml',
16  'Geometry/TrackerCommonData/data/pixbarladderhalf.xml',
17  'Geometry/TrackerCommonData/data/pixbarlayer.xml',
18  'Geometry/TrackerCommonData/data/pixbarlayer0.xml',
19  'Geometry/TrackerCommonData/data/pixbarlayer1.xml',
20  'Geometry/TrackerCommonData/data/pixbarlayer2.xml',
21  'Geometry/TrackerCommonData/data/pixbar.xml',
22  'Geometry/TrackerCommonData/data/trackerpixbar.xml',
23  'Geometry/TrackerCommonData/data/tracker.xml',
24  'Geometry/TrackerCommonData/data/trackermaterial.xml',
25  'Geometry/TrackerCommonData/data/pixfwdMaterials.xml',
26  'Geometry/CMSCommonData/data/cmsMother.xml',
27  'Geometry/CMSCommonData/data/normal/cmsextent.xml',
28  'Geometry/CMSCommonData/data/cms.xml'),
29  confGeomXMLFiles = cms.string('DetectorDescription/DDCMS/data/cms-tracker.xml')
30  )
31 
32 process.p = cms.Path(process.test)