Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-04-06 12:22:18

0001 import FWCore.ParameterSet.Config as cms
0002 
0003 #
0004 l1GtStableParameters = cms.ESProducer("L1GtStableParametersTrivialProducer",
0005 
0006     # trigger decision
0007     
0008     # number of physics trigger algorithms
0009     NumberPhysTriggers = cms.uint32(128),
0010 
0011     # additional number of physics trigger algorithms
0012     NumberPhysTriggersExtended = cms.uint32(64),
0013 
0014     # number of technical triggers
0015     NumberTechnicalTriggers = cms.uint32(64),
0016 
0017     # trigger objects
0018 
0019     # muons
0020     NumberL1Mu = cms.uint32(4),
0021     
0022     # e/gamma and isolated e/gamma objects
0023     NumberL1IsoEG = cms.uint32(4),
0024     NumberL1NoIsoEG = cms.uint32(4),
0025 
0026     # central, forward and tau jets
0027     NumberL1CenJet = cms.uint32(4),
0028     NumberL1ForJet = cms.uint32(4),
0029     NumberL1TauJet = cms.uint32(4),
0030 
0031     # jet counts
0032     NumberL1JetCounts = cms.uint32(12),
0033 
0034     # hardware
0035 
0036     # number of maximum chips defined in the xml file
0037     NumberConditionChips = cms.uint32(2),
0038 
0039     # number of pins on the GTL condition chips
0040     PinsOnConditionChip = cms.uint32(96),
0041 
0042     # correspondence "condition chip - GTL algorithm word" in the hardware
0043     # e.g.: chip 2: 0 - 95;  chip 1: 96 - 128 (191)
0044     OrderConditionChip = cms.vint32(2, 1),
0045 
0046     # number of PSB boards in GT
0047     NumberPsbBoards = cms.int32(7),
0048 
0049     # number of bits for eta of calorimeter objects
0050     IfCaloEtaNumberBits = cms.uint32(4),
0051     
0052     # number of bits for eta of muon objects
0053     IfMuEtaNumberBits = cms.uint32(6),
0054     
0055     # GT DAQ record organized in words of WordLength bits
0056     WordLength = cms.int32(64),
0057 
0058     # one unit in the word is UnitLength bits
0059     UnitLength = cms.int32(8)
0060 )
0061 
0062