CMS 3D CMS Logo

rawDataCollectorByLabel_cfi.py
Go to the documentation of this file.
1 import FWCore.ParameterSet.Config as cms
2 
3 rawDataCollector = cms.EDProducer("RawDataCollectorByLabel",
4  verbose = cms.untracked.int32(1), # 0 = quiet, 1 = collection list, 2 = FED list
5  RawCollectionList = cms.VInputTag( cms.InputTag('SiStripDigiToZSRaw'),
6  cms.InputTag('rawDataCollector'))
7 )
8 
9 #
10 # Make changes if using the Stage 1 trigger
11 #
12 from Configuration.Eras.Modifier_stage1L1Trigger_cff import stage1L1Trigger
13 stage1L1Trigger.toModify( rawDataCollector.RawCollectionList, func = lambda list: list.append(cms.InputTag("l1tDigiToRaw")) )