00001 import FWCore.ParameterSet.Config as cms 00002 00003 # This version is intended for unpacking standard production data 00004 castorDigis = cms.EDFilter("CastorRawToDigi", 00005 # Optional filter to remove any digi with "data valid" off, "error" on, 00006 # or capids not rotating 00007 FilterDataQuality = cms.bool(True), 00008 # Number of the first CASTOR FED. If this is not specified, the 00009 # default from FEDNumbering is used. 00010 CastorFirstFED = cms.untracked.int32(690), 00011 # FED numbers to unpack. If this is not specified, all FEDs from 00012 # FEDNumbering will be unpacked. 00013 FEDs = cms.untracked.vint32( 690, 691, 692, 693 ), 00014 # Do not complain about missing FEDs 00015 ExceptionEmptyData = cms.untracked.bool(False), 00016 # Do not complain about missing FEDs 00017 ComplainEmptyData = cms.untracked.bool(False), 00018 # At most ten samples can be put into a digi, if there are more 00019 # than ten, firstSample and lastSample select which samples 00020 # will be copied to the digi 00021 firstSample = cms.int32(0), 00022 lastSample = cms.int32(9), 00023 # 00024 InputLabel = cms.InputTag("source") 00025 )