Line Code
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
import FWCore.ParameterSet.Config as cms

tpAnalyzer = cms.EDAnalyzer("EcalTPGAnalyzer",

    TPCollection = cms.InputTag("ecalEBunpacker","EcalTriggerPrimitives"),
    TPEmulatorCollection =  cms.InputTag("ecalTriggerPrimitiveDigis",""),
    DigiCollectionEB = cms.InputTag("ecalEBunpacker","ebDigis"),
    DigiCollectionEE = cms.InputTag("ecalEBunpacker","eeDigis"),
    GTRecordCollection = cms.string('gtDigis'),
    TrackMuonCollection = cms.string('globalCosmicMuons1LegBarrelOnly'),
                                    
    Print = cms.bool(True),
    ReadTriggerPrimitives = cms.bool(True),                                    
    UseEndCap = cms.bool(False)

)