CMS 3D CMS Logo

HcalHistogramRawToDigi_cfi.py
Go to the documentation of this file.
1 import FWCore.ParameterSet.Config as cms
2 
3 hcalhistos = cms.EDProducer("HcalHistogramRawToDigi",
4  InputLabel = cms.InputTag("rawDataCollector"),
5  # Number of the first HCAL FED. If this is not specified, the
6  # default from FEDNumbering is used.
7  HcalFirstFED = cms.untracked.int32(20),
8  # FED numbers to unpack. If this is not specified, all FEDs from
9  # FEDNumbering will be unpacked.
10  FEDs = cms.untracked.vint32(20)
11 )
12 
13