CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
copyTrivial_TimeOffsetConstant_cfg.py
Go to the documentation of this file.
2 
3 process = cms.Process("TEST")
4 process.load("CalibCalorimetry.EcalTrivialCondModules.EcalTrivialCondRetriever_cfi")
5 
6 process.load("CondCore.DBCommon.CondDBCommon_cfi")
7 #process.CondDBCommon.connect = 'oracle://cms_orcoff_prep/CMS_COND_ECAL'
8 process.CondDBCommon.DBParameters.authenticationPath = '/afs/cern.ch/cms/DB/conddb/'
9 process.CondDBCommon.connect = 'sqlite_file:TimeOffsetConstant.db'
10 
11 process.MessageLogger = cms.Service("MessageLogger",
12  debugModules = cms.untracked.vstring('*'),
13  destinations = cms.untracked.vstring('cout')
14 )
15 
16 process.source = cms.Source("EmptyIOVSource",
17  firstValue = cms.uint64(1),
18  lastValue = cms.uint64(1),
19  timetype = cms.string('runnumber'),
20  interval = cms.uint64(1)
21 )
22 
23 process.PoolDBOutputService = cms.Service("PoolDBOutputService",
24  process.CondDBCommon,
25  timetype = cms.untracked.string('runnumber'),
26  toPut = cms.VPSet(
27  cms.PSet(
28  record = cms.string('EcalTimeOffsetConstantRcd'),
29  tag = cms.string('EcalTimeOffsetConstant_v01_offline')
30  )
31  )
32 )
33 
34 process.dbCopy = cms.EDAnalyzer("EcalDBCopy",
35  timetype = cms.string('runnumber'),
36  toCopy = cms.VPSet(
37  cms.PSet(
38  record = cms.string('EcalTimeOffsetConstantRcd'),
39  container = cms.string('EcalTimeOffsetConstant')
40  )
41  )
42 )
43 
44 
45 process.prod = cms.EDAnalyzer("EcalTrivialObjectAnalyzer")
46 
47 process.p = cms.Path(process.prod*process.dbCopy)
48