Line Code
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
import FWCore.ParameterSet.Config as cms
from CondCore.CondDB.CondDB_cfi import *

GlobalTag = cms.ESSource( "PoolDBESSource",
                          CondDB,
                          globaltag        = cms.string( '' ),
                          snapshotTime     = cms.string( '' ),
                          toGet            = cms.VPSet(),   # hook to override or add single payloads
                          DumpStat         = cms.untracked.bool( False ),
                          ReconnectEachRun = cms.untracked.bool( False ),
                          RefreshAlways    = cms.untracked.bool( False ),
                          RefreshEachRun   = cms.untracked.bool( False ),
                          RefreshOpenIOVs  = cms.untracked.bool( False ),
                          pfnPostfix       = cms.untracked.string( '' ),
                          pfnPrefix        = cms.untracked.string( '' ),
                          )