CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
StableParameters_cff.py
Go to the documentation of this file.
1 #
2 # DEPRECATED: this file is for local testing of HLT configs only...
3 #
4 
5 import sys
6 import FWCore.ParameterSet.Config as cms
7 
8 print >> sys.stderr, 'L1Trigger/L1TGlobal/python/StableParameters_cff.py is deprecated, please use GlobalParameters_cff.py instead.'
9 
10 StableParametersRcdSource = cms.ESSource("EmptyESSource",
11  recordName = cms.string('L1TGlobalParametersRcd'),
12  iovIsRunNotTime = cms.bool(True),
13  firstValid = cms.vuint32(1)
14 )
15 
16 #
17 # This is current HLT setting:
18 # - these parameters are all deprecated (execpt NumberPhysTriggers)
19 # - real parameters are defaulted
20 # - these parameters allowed but ignored
21 # This lets us roll out new Condition without changing HLT. They can update at will.
22 
23 StableParameters = cms.ESProducer( "StableParametersTrivialProducer",
24  NumberL1IsoEG = cms.uint32( 4 ),
25  NumberL1JetCounts = cms.uint32( 12 ),
26  UnitLength = cms.int32( 8 ),
27  NumberL1ForJet = cms.uint32( 4 ),
28  IfCaloEtaNumberBits = cms.uint32( 4 ),
29  IfMuEtaNumberBits = cms.uint32( 6 ),
30  NumberL1TauJet = cms.uint32( 4 ),
31  NumberL1Mu = cms.uint32( 4 ),
32  NumberConditionChips = cms.uint32( 1 ),
33  NumberPsbBoards = cms.int32( 7 ),
34  NumberL1CenJet = cms.uint32( 4 ),
35  NumberPhysTriggers = cms.uint32( 512 ),
36  PinsOnConditionChip = cms.uint32( 512 ),
37  NumberL1NoIsoEG = cms.uint32( 4 ),
38  NumberTechnicalTriggers = cms.uint32( 64 ),
39  NumberPhysTriggersExtended = cms.uint32( 64 ),
40  WordLength = cms.int32( 64 ),
41  OrderConditionChip = cms.vint32( 1 )
42 )
43