CMS 3D CMS Logo

/data/refman/pasoursint/CMSSW_5_3_1/src/EventFilter/HcalRawToDigi/python/HcalRawToDigi_cfi.py

Go to the documentation of this file.
00001 import FWCore.ParameterSet.Config as cms
00002 
00003 # This version is intended for unpacking standard production data
00004 hcalDigis = cms.EDProducer("HcalRawToDigi",
00005     # Flag to enable unpacking of ZDC channels (default = false)
00006     UnpackZDC = cms.untracked.bool(True),
00007     # Flag to enable unpacking of TTP channels (default = false)
00008     UnpackTTP = cms.untracked.bool(True),
00009     # Optional filter to remove any digi with "data valid" off, "error" on, 
00010     # or capids not rotating
00011     FilterDataQuality = cms.bool(True),
00012     InputLabel = cms.InputTag("source"),
00013     # Use the defaults for FED numbers
00014     # Do not complain about missing FEDs
00015     ComplainEmptyData = cms.untracked.bool(False),
00016     # Flag to enable unpacking of calibration channels (default = false)
00017     UnpackCalib = cms.untracked.bool(True),
00018     lastSample = cms.int32(9),
00019     # At most ten samples can be put into a digi, if there are more
00020     # than ten, firstSample and lastSample select which samples
00021     # will be copied to the digi
00022     firstSample = cms.int32(0)
00023 )
00024 
00025