00001 import FWCore.ParameterSet.Config as cms 00002 00003 # This version is intended for unpacking standard production data 00004 hcalDigis = cms.EDFilter("HcalRawToDigi", 00005 # Flag to enable unpacking of ZDC channels (default = false) 00006 UnpackZDC = cms.untracked.bool(True), 00007 # Optional filter to remove any digi with "data valid" off, "error" on, 00008 # or capids not rotating 00009 FilterDataQuality = cms.bool(True), 00010 # Do not complain about missing FEDs 00011 ExceptionEmptyData = cms.untracked.bool(False), 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