Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-04-06 12:10:21

0001 import FWCore.ParameterSet.Config as cms
0002 
0003 # This version is intended for unpacking standard production data
0004 castorDigis = cms.EDProducer("CastorRawToDigi",
0005     # Optional filter to remove any digi with "data valid" off, "error" on, 
0006     # or capids not rotating
0007     FilterDataQuality = cms.bool(True),
0008     # Number of the first CASTOR FED.  If this is not specified, the
0009     # default from FEDNumbering is used.
0010     CastorFirstFED = cms.int32(690),
0011     ZDCFirstFED = cms.int32(693),                         
0012     # FED numbers to unpack.  If this is not specified, all FEDs from
0013     # FEDNumbering will be unpacked.
0014     FEDs = cms.untracked.vint32( 690, 691, 692, 693, 722),
0015     # Do not complain about missing FEDs
0016     ExceptionEmptyData = cms.untracked.bool(False),
0017     # Do not complain about missing FEDs
0018     ComplainEmptyData = cms.untracked.bool(False),
0019     # At most ten samples can be put into a digi, if there are more
0020     # than ten, firstSample and lastSample select which samples
0021     # will be copied to the digi
0022     firstSample = cms.int32(0),
0023     lastSample = cms.int32(9),
0024     # castor technical trigger processor
0025     UnpackTTP = cms.bool(True),
0026     # report errors
0027     silent = cms.untracked.bool(False),
0028     #
0029     InputLabel = cms.InputTag("rawDataCollector"),
0030     CastorCtdc = cms.bool(False),
0031     UseNominalOrbitMessageTime = cms.bool(True),
0032     ExpectedOrbitMessageTime = cms.int32(-1),
0033     UnpackZDC = cms.bool(True),
0034 
0035    )