CMS 3D CMS Logo

/afs/cern.ch/work/a/aaltunda/public/www/CMSSW_5_3_14/src/EventFilter/CSCTFRawToDigi/python/csctfpacker_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 CSCTFPacker = cms.EDProducer("CSCTFPacker",
00005     CSCCommonTrigger,
00006     # the above "using" statement is equivalent to settings below:
00007     #   int32 MinBX = 3
00008     #   int32 MaxBX = 9
00009     zeroSuppression = cms.bool(True),
00010     outputFile = cms.string(''),
00011     lctProducer = cms.InputTag("simCscTriggerPrimitiveDigis","MPCSORTED"),
00012     mbProducer  = cms.InputTag("null"),
00013     trackProducer = cms.InputTag("simCsctfTrackDigis"),
00014     putBufferToEvent = cms.bool(True),
00015     activeSectors = cms.int32(4095),
00016     nTBINs = cms.int32(7),
00017     # Agreement in CSC community to shift and reverse ME-1 strips as opposed to hardware
00018     swapME1strips = cms.bool(False)
00019 )
00020 
00021