CMS 3D CMS Logo

GlobalParameters_cff.py
Go to the documentation of this file.
1 #
2 # WARNING: This file is in the L1T configuration critical path.
3 #
4 # All changes must be explicitly discussed with the L1T offline coordinator.
5 #
6 import FWCore.ParameterSet.Config as cms
7 
8 GlobalParametersRcdSource = cms.ESSource("EmptyESSource",
9  recordName = cms.string('L1TGlobalParametersRcd'),
10  iovIsRunNotTime = cms.bool(True),
11  firstValid = cms.vuint32(1)
12 )
13 
14 #GlobalParameters = cms.ESProducer("L1TGlobalParamsESProducer",
15 GlobalParameters = cms.ESProducer("StableParametersTrivialProducer",
16  # bx in event
17  #NumberBxInEvent = cms.int32(5),
18 
19  # trigger decision
20 
21  # number of physics trigger algorithms
22  NumberPhysTriggers = cms.uint32(512),
23 
24 
25  # trigger objects
26 
27  # muons
28  NumberL1Muon = cms.uint32(8),
29 
30  # e/gamma and isolated e/gamma objects
31  NumberL1EGamma = cms.uint32(12),
32 
33  # jets
34  NumberL1Jet = cms.uint32(12),
35 
36  # taus
37  NumberL1Tau = cms.uint32(12),
38 
39  # hardware
40 
41  # number of maximum chips defined in the xml file
42  NumberChips = cms.uint32(1),
43 
44  # number of pins on the GTL condition chips
45  PinsOnChip = cms.uint32(512),
46 
47  # correspondence "condition chip - GTL algorithm word" in the hardware
48  # e.g.: chip 2: 0 - 95; chip 1: 96 - 128 (191)
49  OrderOfChip = cms.vint32(1),
50 )
51 
52