Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-04-06 11:59:48

0001 import FWCore.ParameterSet.Config as cms
0002 
0003 from CalibTracker.SiStripCommon.ShallowEventDataProducer_cfi import *
0004 from CalibTracker.SiStripCommon.ShallowClustersProducer_cfi import *
0005 from CalibTracker.SiStripCommon.ShallowTrackClustersProducer_cfi import *
0006 from CalibTracker.SiStripCommon.ShallowRechitClustersProducer_cfi import *
0007 from CalibTracker.SiStripCommon.ShallowSimhitClustersProducer_cfi import *
0008 from CalibTracker.SiStripCommon.ShallowTracksProducer_cfi import *
0009 from CalibTracker.SiStripCommon.ShallowSimTracksProducer_cfi import *
0010 
0011 shallowTree = cms.EDAnalyzer("ShallowTree",
0012                              outputCommands = cms.untracked.vstring(
0013     'drop *',
0014     'keep *_shallowEventRun_*_*',
0015     'keep *_shallowClusters_*_*',
0016     'keep *_shallowRechitClusters_*_*',
0017     'keep *_shallowTracks_*_*',
0018     'keep *_shallowTrackClusters_*_*',
0019     'keep *_shallowSimhitClusters_*_*',
0020     'keep *_shallowSimTracks_*_*'
0021     ))
0022 
0023 theBigNtuple = cms.Sequence( (shallowEventRun +
0024                               shallowClusters +
0025                               shallowRechitClusters +
0026                               shallowSimhitClusters +
0027                               shallowTrackClusters +
0028                               shallowTracks +
0029                               shallowSimTracks) *
0030                              shallowTree
0031                              )