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 files written
0004 # at testbeam and teststands using 10 timesamples
0005 # for castor tb 2008
0006 
0007 castorDigis = cms.EDProducer("CastorRawToDigi",
0008     # Optional filter to remove any digi with "data valid" off, "error" on, 
0009     # or capids not rotating
0010     FilterDataQuality = cms.bool(True),
0011     # Number of the first CASTOR FED.  If this is not specified, the
0012     # default from FEDNumbering is used.
0013     CastorFirstFED = cms.untracked.int32(21),
0014     # FED numbers to unpack.  If this is not specified, all FEDs from
0015     # FEDNumbering will be unpacked.
0016     FEDs = cms.untracked.vint32( 21 ),
0017     # Do not complain about missing FEDs
0018     ExceptionEmptyData = cms.untracked.bool(False),
0019     # Do not complain about missing FEDs
0020     ComplainEmptyData = cms.untracked.bool(False),
0021     # At most ten samples can be put into a digi, if there are more
0022     # than ten, firstSample and lastSample select which samples
0023     # will be copied to the digi
0024     firstSample = cms.int32(0),
0025     lastSample = cms.int32(9),
0026     #
0027     InputLabel = cms.InputTag("rawDataCollector")
0028 )