CMS 3D CMS Logo

/data/doxygen/doxygen-1.7.3/gen/CMSSW_4_2_8/src/EventFilter/CSCTFRawToDigi/python/csctfunpacker_cfi.py

Go to the documentation of this file.
00001 import FWCore.ParameterSet.Config as cms
00002 
00003 from L1Trigger.CSCCommonTrigger.CSCCommonTrigger_cfi import *
00004 CSCTFUnpacker = cms.EDProducer("CSCTFUnpacker",
00005     CSCCommonTrigger,
00006     # Set all values to 0 if you trust hardware settings
00007     # Keep in mind that +Z (positive endcap) has sectors 1-6 and -Z (negative endcap) 7-12
00008     slot2sector = cms.vint32(0, 0, 0, 0, 0,
00009         0, 0, 0, 0, 0,
00010         0, 0, 0, 0, 0,
00011         0, 0, 0, 0, 0,
00012         0, 0),
00013     # Mapping file (default one-to-one applied if empty):
00014     mappingFile = cms.string(''),
00015     # Agreement in CSC community to shift and reverse ME-1 strips as opposed to hardware
00016     swapME1strips = cms.bool(False),
00017     # the above "using" statement is equivalent to setting of LCT time window below:
00018     #   int32 MinBX = 3
00019     #   int32 MaxBX = 9
00020     # Specify label of the module which produces raw CSCTF data
00021     producer = cms.InputTag("source")
00022 )
00023 
00024