CMS 3D CMS Logo

/data/doxygen/doxygen-1.7.3/gen/CMSSW_4_2_8/src/L1TriggerConfig/L1GtConfigProducers/python/l1GtStableParameters_cfi.py

Go to the documentation of this file.
00001 import FWCore.ParameterSet.Config as cms
00002 
00003 #
00004 l1GtStableParameters = cms.ESProducer("L1GtStableParametersTrivialProducer",
00005 
00006     # trigger decision
00007     
00008     # number of physics trigger algorithms
00009     NumberPhysTriggers = cms.uint32(128),
00010 
00011     # additional number of physics trigger algorithms
00012     NumberPhysTriggersExtended = cms.uint32(64),
00013 
00014     # number of technical triggers
00015     NumberTechnicalTriggers = cms.uint32(64),
00016 
00017     # trigger objects
00018 
00019     # muons
00020     NumberL1Mu = cms.uint32(4),
00021     
00022     # e/gamma and isolated e/gamma objects
00023     NumberL1IsoEG = cms.uint32(4),
00024     NumberL1NoIsoEG = cms.uint32(4),
00025 
00026     # central, forward and tau jets
00027     NumberL1CenJet = cms.uint32(4),
00028     NumberL1ForJet = cms.uint32(4),
00029     NumberL1TauJet = cms.uint32(4),
00030 
00031     # jet counts
00032     NumberL1JetCounts = cms.uint32(12),
00033 
00034     # hardware
00035 
00036     # number of maximum chips defined in the xml file
00037     NumberConditionChips = cms.uint32(2),
00038 
00039     # number of pins on the GTL condition chips
00040     PinsOnConditionChip = cms.uint32(96),
00041 
00042     # correspondence "condition chip - GTL algorithm word" in the hardware
00043     # e.g.: chip 2: 0 - 95;  chip 1: 96 - 128 (191)
00044     OrderConditionChip = cms.vint32(2, 1),
00045 
00046     # number of PSB boards in GT
00047     NumberPsbBoards = cms.int32(7),
00048 
00049     # number of bits for eta of calorimeter objects
00050     IfCaloEtaNumberBits = cms.uint32(4),
00051     
00052     # number of bits for eta of muon objects
00053     IfMuEtaNumberBits = cms.uint32(6),
00054     
00055     # GT DAQ record organized in words of WordLength bits
00056     WordLength = cms.int32(64),
00057 
00058     # one unit in the word is UnitLength bits
00059     UnitLength = cms.int32(8)
00060 )
00061 
00062