CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
HcalRawToDigi_cfi.py
Go to the documentation of this file.
2 
3 # This version is intended for unpacking standard production data
4 hcalDigis = cms.EDProducer("HcalRawToDigi",
5  # Flag to enable unpacking of ZDC channels (default = false)
6  UnpackZDC = cms.untracked.bool(True),
7  # Flag to enable unpacking of TTP channels (default = false)
8  UnpackTTP = cms.untracked.bool(True),
9  # Optional filter to remove any digi with "data valid" off, "error" on,
10  # or capids not rotating
11  FilterDataQuality = cms.bool(True),
12  InputLabel = cms.InputTag("rawDataCollector"),
13  # Use the defaults for FED numbers
14  # Do not complain about missing FEDs
15  ComplainEmptyData = cms.untracked.bool(False),
16  # Flag to enable unpacking of calibration channels (default = false)
17  UnpackCalib = cms.untracked.bool(True),
18  lastSample = cms.int32(9),
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 )
24 
25