Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-04-06 12:00:05

0001 import FWCore.ParameterSet.Config as cms
0002 
0003 tpAnalyzer = cms.EDAnalyzer("EcalTPGAnalyzer",
0004 
0005     TPCollection = cms.InputTag("ecalEBunpacker","EcalTriggerPrimitives"),
0006     TPEmulatorCollection =  cms.InputTag("ecalTriggerPrimitiveDigis",""),
0007     DigiCollectionEB = cms.InputTag("ecalEBunpacker","ebDigis"),
0008     DigiCollectionEE = cms.InputTag("ecalEBunpacker","eeDigis"),
0009     GTRecordCollection = cms.string('gtDigis'),
0010     TrackMuonCollection = cms.string('globalCosmicMuons1LegBarrelOnly'),
0011                                     
0012     Print = cms.bool(True),
0013     ReadTriggerPrimitives = cms.bool(True),                                    
0014     UseEndCap = cms.bool(False)
0015 
0016 )