Revision: | 1.1 |
Committed: | Mon Jul 5 20:24:33 2010 UTC (14 years, 10 months ago) by yilmaz |
Content type: | text/x-python |
Branch: | MAIN |
CVS Tags: | HEAD |
Log Message: | configurations |
# | Content |
---|---|
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 |