CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
theBigNtupleMC_cfi.py
Go to the documentation of this file.
2 
10 
11 shallowTree = cms.EDAnalyzer("ShallowTree",
12  outputCommands = cms.untracked.vstring(
13  'drop *',
14  'keep *_shallowEventRun_*_*',
15  'keep *_shallowClusters_*_*',
16  'keep *_shallowRechitClusters_*_*',
17  'keep *_shallowTracks_*_*',
18  'keep *_shallowTrackClusters_*_*',
19  'keep *_shallowSimhitClusters_*_*',
20  'keep *_shallowSimTracks_*_*'
21  ))
22 
23 theBigNtuple = cms.Sequence( (shallowEventRun +
24  shallowClusters +
25  shallowRechitClusters +
26  shallowSimhitClusters +
27  shallowTrackClusters +
28  shallowTracks +
29  shallowSimTracks) *
30  shallowTree
31  )