CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Groups Pages
rctDigis_cfi.py
Go to the documentation of this file.
1 import FWCore.ParameterSet.Config as cms
2 
3 rctDigis = cms.EDProducer("L1RCTProducer",
4  hcalDigis = cms.VInputTag(cms.InputTag("hcalTriggerPrimitiveDigis")),
5  useEcal = cms.bool(True),
6  useHcal = cms.bool(True),
7  ecalDigis = cms.VInputTag(cms.InputTag("ecalTriggerPrimitiveDigis")),
8  BunchCrossings = cms.vint32(0),
9  getFedsFromOmds = cms.bool(False),
10 # getFedsFromOmds = cms.bool(True), # ONLY for online DQM!
11  queryDelayInLS = cms.uint32(10),
12  queryIntervalInLS = cms.uint32(100),
13  conditionsLabel = cms.string("")
14 )
15 
16 
17