CMS 3D CMS Logo

L1TCaloParamsOnline_cfi.py
Go to the documentation of this file.
1 import FWCore.ParameterSet.Config as cms
2 
3 #from L1Trigger.L1TCalorimeter.caloStage2Params_2016_v3_3_HI_cfi import *
4 
5 from CondCore.CondDB.CondDB_cfi import CondDB
6 CondDB.connect = cms.string('oracle://cms_orcon_prod/CMS_CONDITIONS')
7 
8 l1caloparProtodb = cms.ESSource("PoolDBESSource",
9  CondDB,
10  toGet = cms.VPSet(
11  cms.PSet(
12  record = cms.string('L1TCaloParamsRcd'),
13  tag = cms.string("L1TCaloParamsPrototype_Stage2v0_hlt")
14  )
15  )
16 )
17 
18 L1TCaloParamsOnlineProd = cms.ESProducer("L1TCaloParamsOnlineProd",
19  onlineAuthentication = cms.string('.'),
20  forceGeneration = cms.bool(True),
21  onlineDB = cms.string('oracle://CMS_OMDS_LB/CMS_TRG_R'),
22  exclusiveLayer = cms.uint32(0), # process both layers by default
23  transactionSafe = cms.bool(True) # nothrow guarantee if set to False: carry on no matter what
24 )
25