CMS 3D CMS Logo

csctfpacker_cfi.py
Go to the documentation of this file.
1 import FWCore.ParameterSet.Config as cms
2 
4 csctfpacker = cms.EDProducer("CSCTFPacker",
5  CSCCommonTrigger,
6  zeroSuppression = cms.bool(True),
7  outputFile = cms.string(''),
8  lctProducer = cms.InputTag("simCscTriggerPrimitiveDigis","MPCSORTED"),
9  mbProducer = cms.InputTag("null"),
10  trackProducer = cms.InputTag("simCsctfTrackDigis"),
11  putBufferToEvent = cms.bool(True),
12  activeSectors = cms.int32(4095),
13  nTBINs = cms.int32(7),
14  # Agreement in CSC community to shift and reverse ME-1 strips as opposed to hardware
15  swapME1strips = cms.bool(False)
16 )
17 
18