CMS 3D CMS Logo

maskedRctInputDigis_cfi.py
Go to the documentation of this file.
1 import FWCore.ParameterSet.Config as cms
2 
3 maskedRctInputDigis = cms.EDProducer("MaskedRctInputDigiProducer",
4  hcalDigisLabel = cms.InputTag("hcalTriggerPrimitiveDigis"),
5  maskFile = cms.FileInPath('L1Trigger/RegionalCaloTrigger/test/data/emptyMask.txt'),
6  useEcal = cms.bool(True),
7  useHcal = cms.bool(True),
8  ecalDigisLabel = cms.InputTag("ecalTriggerPrimitiveDigis")
9 )
10 
11 
12