CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
L1MuTriggerScalesOnlineProducer_cfi.py
Go to the documentation of this file.
1 import FWCore.ParameterSet.Config as cms
2 
3 L1MuTriggerScalesOnlineProducer = cms.ESProducer("L1MuTriggerScalesOnlineProducer",
4  onlineDB = cms.string("oracle://CMS_OMDS_LB/CMS_TRG_R"),
5  onlineAuthentication = cms.string("."),
6  forceGeneration = cms.bool(False),
7 # Legacy fields: This stuff should ultimately come from OMDS as well, but at the moment
8 # we just define it here like for the dummy producers.
9 
10  nbitPackingDTEta = cms.int32(6),
11  signedPackingDTEta = cms.bool(False),
12  nbinsDTEta = cms.int32(64),
13  minDTEta = cms.double(-1.2),
14  maxDTEta = cms.double(1.2),
15  offsetDTEta = cms.int32(0),
16  nbitPackingCSCEta = cms.int32(6),
17  nbinsCSCEta = cms.int32(32),
18  minCSCEta = cms.double(0.9),
19  maxCSCEta = cms.double(2.5),
20  scaleRPCEta = cms.vdouble(
21  -2.10, -1.97, -1.85, -1.73, -1.61, -1.48,
22  -1.36, -1.24, -1.14, -1.04, -0.93, -0.83,
23  -0.72, -0.58, -0.44, -0.27, -0.07,
24  0.07, 0.27, 0.44, 0.58, 0.72,
25  0.83, 0.93, 1.04, 1.14, 1.24, 1.36,
26  1.48, 1.61, 1.73, 1.85, 1.97, 2.10),
27  nbitPackingBrlRPCEta = cms.int32(6),
28  signedPackingBrlRPCEta = cms.bool(True),
29  nbinsBrlRPCEta = cms.int32(33),
30  offsetBrlRPCEta = cms.int32(16),
31  nbitPackingFwdRPCEta = cms.int32(6),
32  signedPackingFwdRPCEta = cms.bool(True),
33  nbinsFwdRPCEta = cms.int32(33),
34  offsetFwdRPCEta = cms.int32(16),
35  # metadata for GMT scales whose contents
36  # come from DB already
37  nbitPackingGMTEta = cms.int32(6),
38  nbinsGMTEta = cms.int32(31),
39  nbitPackingPhi = cms.int32(8),
40  signedPackingPhi = cms.bool(False)
41 
42 )