Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2025-04-02 23:19:23

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 from CondCore.ESSources.default_CondDBESource_cfi import PoolDBESSource as _PoolDBESSource
0009 
0010 GlobalTag = _PoolDBESSource(
0011     CondDBConnection,
0012     globaltag        = '',
0013     snapshotTime     = '',
0014     frontierKey      = '',
0015     toGet            = [],   # hook to override or add single payloads
0016     JsonDumpFileName = '',
0017     DumpStat         = False,
0018     ReconnectEachRun = False,
0019     RefreshAlways    = False,
0020     RefreshEachRun   = False,
0021     RefreshOpenIOVs  = False,
0022     pfnPostfix       = '',
0023     pfnPrefix        = '',
0024     recordsToDebug   = [],
0025 )