1 |
yilmaz |
1.1 |
import FWCore.ParameterSet.Config as cms
|
2 |
|
|
from CondCore.DBCommon.CondDBSetup_cfi import *
|
3 |
|
|
from RecoVertex.BeamSpotProducer.BeamSpot_cfi import *
|
4 |
|
|
|
5 |
|
|
BeamSpotDBSource = cms.ESSource("PoolDBESSource",
|
6 |
|
|
CondDBSetup,
|
7 |
|
|
toGet = cms.VPSet(cms.PSet(
|
8 |
|
|
record = cms.string('BeamSpotObjectsRcd'),
|
9 |
|
|
tag = cms.string('JEX_BeamSpot_Preliminary'))),
|
10 |
|
|
connect = cms.string('sqlite_file:JulyExerciseConditions.db')
|
11 |
|
|
)
|
12 |
|
|
es_prefer_beamspot = cms.ESPrefer("PoolDBESSource","BeamSpotDBSource")
|
13 |
|
|
|
14 |
|
|
|