Back to home page

Project CMSSW displayed by LXR

 
 

    


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

0001 from CalibTracker.SiStripCommon.shallowTree_test_template import *
0002 process.TFileService.fileName = 'test_shallowRechitClustersProducer.root'
0003 process.load('RecoTracker.TrackProducer.TrackRefitters_cff')
0004 process.load('CalibTracker.SiStripCommon.ShallowRechitClustersProducer_cfi')
0005 
0006 process.testTree = cms.EDAnalyzer(
0007    "ShallowTree",
0008    outputCommands = cms.untracked.vstring(
0009       'drop *',
0010       'keep *_shallowRechitClusters_*_*',
0011       )
0012    )
0013 process.p = cms.Path(
0014    process.siStripMatchedRecHits*
0015    process.shallowRechitClusters*
0016    process.testTree
0017 )