00001 import FWCore.ParameterSet.Config as cms 00002 00003 hcalhistos = cms.EDFilter("HcalHistogramRawToDigi", 00004 InputLabel = cms.InputTag("source"), 00005 # Number of the first HCAL FED. If this is not specified, the 00006 # default from FEDNumbering is used. 00007 HcalFirstFED = cms.untracked.int32(20), 00008 # FED numbers to unpack. If this is not specified, all FEDs from 00009 # FEDNumbering will be unpacked. 00010 FEDs = cms.untracked.vint32(20) 00011 ) 00012 00013