CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
cscUnpacker_cfi.py
Go to the documentation of this file.
2 
3 # This is the generic cfi file for CSC unpacking
4 
5 muonCSCDigis = cms.EDProducer("CSCDCCUnpacker",
6  # Define input to the unpacker
7  InputObjects = cms.InputTag("rawDataCollector"),
8  # Use CSC examiner to check for corrupt or semi-corrupt data & avoid unpacker crashes
9  UseExaminer = cms.bool(True),
10  # This mask is needed by the examiner
11  ExaminerMask = cms.uint32(0x1FEBF3F6),
12  # Use Examiner to unpack good chambers and skip only bad ones
13  UseSelectiveUnpacking = cms.bool(True),
14  # This mask simply reduces error reporting
15  ErrorMask = cms.uint32(0x0),
16  # Unpack general status digis?
17  UnpackStatusDigis = cms.bool(False),
18  # Unpack FormatStatus digi?
19  UseFormatStatus = cms.bool(True),
20  # Turn on lots of output
21  Debug = cms.untracked.bool(False),
22  PrintEventNumber = cms.untracked.bool(False),
23  # Visualization of raw data in corrupted events
24  VisualFEDInspect = cms.untracked.bool(False),
25  VisualFEDShort = cms.untracked.bool(False),
26  FormatedEventDump = cms.untracked.bool(False)
27 )
28 
29