Go to the documentation of this file.00001 import FWCore.ParameterSet.Config as cms
00002
00003 from CalibTracker.SiStripCommon.ShallowEventDataProducer_cfi import *
00004 from CalibTracker.SiStripCommon.ShallowClustersProducer_cfi import *
00005 from CalibTracker.SiStripCommon.ShallowTrackClustersProducer_cfi import *
00006 from CalibTracker.SiStripCommon.ShallowRechitClustersProducer_cfi import *
00007 from CalibTracker.SiStripCommon.ShallowSimhitClustersProducer_cfi import *
00008 from CalibTracker.SiStripCommon.ShallowTracksProducer_cfi import *
00009 from CalibTracker.SiStripCommon.ShallowSimTracksProducer_cfi import *
00010
00011 ShallowTree = cms.EDAnalyzer("ShallowTree",
00012 outputCommands = cms.untracked.vstring(
00013 'drop *',
00014 'keep *_shallowEventRun_*_*',
00015 'keep *_shallowClusters_*_*',
00016 'keep *_shallowRechitClusters_*_*',
00017 'keep *_shallowTracks_*_*',
00018 'keep *_shallowTrackClusters_*_*',
00019 'keep *_shallowSimhitClusters_*_*',
00020 'keep *_shallowSimTracks_*_*'
00021 ))
00022
00023 theBigNtuple = cms.Sequence( (shallowEventRun +
00024 shallowClusters +
00025 shallowRechitClusters +
00026 shallowSimhitClusters +
00027 shallowTrackClusters +
00028 shallowTracks +
00029 shallowSimTracks) *
00030 ShallowTree
00031 )