CMS 3D CMS Logo

/data/doxygen/doxygen-1.7.3/gen/CMSSW_4_2_8/src/EventFilter/CSCRawToDigi/python/cscUnpacker_cfi.py

Go to the documentation of this file.
00001 import FWCore.ParameterSet.Config as cms
00002 
00003 # This is the generic cfi file for CSC unpacking
00004 
00005 muonCSCDigis = cms.EDProducer("CSCDCCUnpacker",
00006     # Define input to the unpacker
00007     InputObjects = cms.InputTag("source"),
00008     # Use CSC examiner to check for corrupt or semi-corrupt data & avoid unpacker crashes
00009     UseExaminer = cms.bool(True),
00010     # This mask is needed by the examiner 
00011     ExaminerMask = cms.uint32(0x1FEBF3F6),
00012     # Use Examiner to unpack good chambers and skip only bad ones
00013     UseSelectiveUnpacking = cms.bool(True),
00014     # This mask simply reduces error reporting
00015     ErrorMask = cms.uint32(0x0),
00016     # Unpack general status digis?
00017     UnpackStatusDigis = cms.bool(False),
00018     # Unpack FormatStatus digi?
00019     UseFormatStatus = cms.bool(True),                        
00020     # Turn on lots of output                            
00021     Debug = cms.untracked.bool(False),
00022     PrintEventNumber = cms.untracked.bool(False),
00023     # Visualization of raw data in corrupted events
00024     VisualFEDInspect = cms.untracked.bool(False),
00025     VisualFEDShort = cms.untracked.bool(False),
00026     FormatedEventDump = cms.untracked.bool(False)
00027 )
00028 
00029