CMS 3D CMS Logo

L1TMuonEndCapParamsOnline_cfi.py
Go to the documentation of this file.
1 import FWCore.ParameterSet.Config as cms
2 
3 #from L1Trigger.L1TMuonEndCap.fakeEmtfParams_cff import *
4 
5 from CondCore.CondDB.CondDB_cfi import CondDB
6 CondDB.connect = cms.string('oracle://cms_orcon_prod/CMS_CONDITIONS')
7 
8 l1emtfparProtodb = cms.ESSource("PoolDBESSource",
9  CondDB,
10  toGet = cms.VPSet(
11  cms.PSet(
12  record = cms.string('L1TMuonEndCapParamsRcd'),
13  tag = cms.string('L1TMuonEndCapParamsPrototype_Stage2v0_hlt')
14  )
15  )
16 )
17 
18 L1TMuonEndCapParamsOnlineProd = cms.ESProducer("L1TMuonEndCapParamsOnlineProd",
19  onlineAuthentication = cms.string('.'),
20  forceGeneration = cms.bool(True),
21  onlineDB = cms.string('oracle://CMS_OMDS_LB/CMS_TRG_R'),
22  transactionSafe = cms.bool(True) # nothrow guarantee if set to False: carry on no matter what
23 )