CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
CastorRawToDigi_cfi.py
Go to the documentation of this file.
1 import FWCore.ParameterSet.Config as cms
2 
3 # This version is intended for unpacking standard production data
4 castorDigis = cms.EDProducer("CastorRawToDigi",
5  # Optional filter to remove any digi with "data valid" off, "error" on,
6  # or capids not rotating
7  FilterDataQuality = cms.bool(True),
8  # Number of the first CASTOR FED. If this is not specified, the
9  # default from FEDNumbering is used.
10  CastorFirstFED = cms.int32(690),
11  # FED numbers to unpack. If this is not specified, all FEDs from
12  # FEDNumbering will be unpacked.
13  FEDs = cms.untracked.vint32( 690, 691, 692 ),
14  # Do not complain about missing FEDs
15  ExceptionEmptyData = cms.untracked.bool(False),
16  # Do not complain about missing FEDs
17  ComplainEmptyData = cms.untracked.bool(False),
18  # At most ten samples can be put into a digi, if there are more
19  # than ten, firstSample and lastSample select which samples
20  # will be copied to the digi
21  firstSample = cms.int32(0),
22  lastSample = cms.int32(9),
23  # castor technical trigger processor
24  UnpackTTP = cms.bool(True),
25  # report errors
26  silent = cms.untracked.bool(False),
27  #
28  InputLabel = cms.InputTag("rawDataCollector"),
29  CastorCtdc = cms.bool(False),
30  UseNominalOrbitMessageTime = cms.bool(True),
31  ExpectedOrbitMessageTime = cms.int32(-1)
32 )