Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2023-03-17 10:46:10

0001 #This is the default configuration for the connection to the frontier servlets
0002 #in order to fetch the condition payloads in CMSSW.
0003 import socket
0004 import FWCore.ParameterSet.Config as cms
0005 from CondCore.CondDB.CondDB_cfi import *
0006 
0007 CondDBConnection = CondDB.clone( connect = cms.string( 'frontier://FrontierProd/CMS_CONDITIONS' ) )
0008 GlobalTag = cms.ESSource( "PoolDBESSource",
0009                           CondDBConnection,
0010                           globaltag        = cms.string( '' ),
0011                           snapshotTime     = cms.string( '' ),
0012                           toGet            = cms.VPSet(),   # hook to override or add single payloads
0013                           DumpStat         = cms.untracked.bool( False ),
0014                           ReconnectEachRun = cms.untracked.bool( False ),
0015                           RefreshAlways    = cms.untracked.bool( False ),
0016                           RefreshEachRun   = cms.untracked.bool( False ),
0017                           RefreshOpenIOVs  = cms.untracked.bool( False ),
0018                           pfnPostfix       = cms.untracked.string( '' ),
0019                           pfnPrefix        = cms.untracked.string( '' ),
0020                           )