Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-04-06 12:10:43

0001 import FWCore.ParameterSet.Config as cms
0002 
0003 hcalhistos = cms.EDProducer("HcalHistogramRawToDigi",
0004     InputLabel = cms.InputTag("rawDataCollector"),
0005     # Number of the first HCAL FED.  If this is not specified, the
0006     # default from FEDNumbering is used.
0007     HcalFirstFED = cms.untracked.int32(20),
0008     # FED numbers to unpack.  If this is not specified, all FEDs from
0009     # FEDNumbering will be unpacked.
0010     FEDs = cms.untracked.vint32(20)
0011 )
0012 
0013