CMS 3D CMS Logo

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  ZDCFirstFED = cms.int32(693),
12  # FED numbers to unpack. If this is not specified, all FEDs from
13  # FEDNumbering will be unpacked.
14  FEDs = cms.untracked.vint32( 690, 691, 692, 693, 722),
15  # Do not complain about missing FEDs
16  ExceptionEmptyData = cms.untracked.bool(False),
17  # Do not complain about missing FEDs
18  ComplainEmptyData = cms.untracked.bool(False),
19  # At most ten samples can be put into a digi, if there are more
20  # than ten, firstSample and lastSample select which samples
21  # will be copied to the digi
22  firstSample = cms.int32(0),
23  lastSample = cms.int32(9),
24  # castor technical trigger processor
25  UnpackTTP = cms.bool(True),
26  # report errors
27  silent = cms.untracked.bool(False),
28  #
29  InputLabel = cms.InputTag("rawDataCollector"),
30  CastorCtdc = cms.bool(False),
31  UseNominalOrbitMessageTime = cms.bool(True),
32  ExpectedOrbitMessageTime = cms.int32(-1),
33  UnpackZDC = cms.bool(True),
34 
35  )