Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-04-06 12:10:28

0001 import FWCore.ParameterSet.Config as cms
0002 
0003 from L1Trigger.CSCTriggerPrimitives.CSCCommonTrigger_cfi import *
0004 csctfunpacker = cms.EDProducer("CSCTFUnpacker",
0005     CSCCommonTrigger,
0006     # Set all values to 0 if you trust hardware settings
0007     # Keep in mind that +Z (positive endcap) has sectors 1-6 and -Z (negative endcap) 7-12
0008     slot2sector = cms.vint32(0, 0, 0, 0, 0,
0009         0, 0, 0, 0, 0,
0010         0, 0, 0, 0, 0,
0011         0, 0, 0, 0, 0,
0012         0, 0),
0013     # Mapping file (default one-to-one applied if empty):
0014     mappingFile = cms.string(''),
0015     # Agreement in CSC community to shift and reverse ME-1 strips as opposed to hardware
0016     swapME1strips = cms.bool(False),
0017     # Specify label of the module which produces raw CSCTF data
0018     producer = cms.InputTag("rawDataCollector")
0019 )
0020 
0021