Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-04-06 12:20:33

0001 #
0002 # WARNING: This file is in the L1T configuration critical path.
0003 #
0004 # All changes must be explicitly discussed with the L1T offline coordinator.
0005 #
0006 import FWCore.ParameterSet.Config as cms
0007 
0008 GlobalParametersRcdSource = cms.ESSource("EmptyESSource",
0009     recordName = cms.string('L1TGlobalParametersRcd'),
0010     iovIsRunNotTime = cms.bool(True),
0011     firstValid = cms.vuint32(1)
0012 )
0013 
0014 #GlobalParameters = cms.ESProducer("L1TGlobalParamsESProducer", 
0015 GlobalParameters = cms.ESProducer("StableParametersTrivialProducer", 
0016     # bx in event
0017     #NumberBxInEvent = cms.int32(5),
0018 
0019     # trigger decision
0020     
0021     # number of physics trigger algorithms
0022     NumberPhysTriggers = cms.uint32(512),
0023 
0024 
0025     # trigger objects
0026 
0027     # muons
0028     NumberL1Muon = cms.uint32(8),
0029     
0030     # e/gamma and isolated e/gamma objects
0031     NumberL1EGamma = cms.uint32(12),
0032 
0033     #  jets
0034     NumberL1Jet = cms.uint32(12),
0035 
0036     # taus
0037     NumberL1Tau = cms.uint32(12),
0038 
0039     # hardware
0040 
0041     # number of maximum chips defined in the xml file
0042     NumberChips = cms.uint32(1),
0043 
0044     # number of pins on the GTL condition chips
0045     PinsOnChip = cms.uint32(512),
0046 
0047     # correspondence "condition chip - GTL algorithm word" in the hardware
0048     # e.g.: chip 2: 0 - 95;  chip 1: 96 - 128 (191)
0049     OrderOfChip = cms.vint32(1),
0050 )
0051 
0052