CMS 3D CMS Logo

copyTrivial_aging_cfgIC.py
Go to the documentation of this file.
1 import FWCore.ParameterSet.Config as cms
2 
3 process = cms.Process("TEST")
4 process.load("CalibCalorimetry.EcalTrivialCondModules.EcalTrivialCondRetriever_cfi")
5 process.EcalTrivialConditionRetriever.TotLumi = cms.untracked.double(3000.0)
6 process.EcalTrivialConditionRetriever.InstLumi = cms.untracked.double(5.0e+34)
7 process.EcalTrivialConditionRetriever.intercalibConstantsFile = cms.untracked.string("EcalIntercalibConstants_2011_V3_Bon_start_mc.xml")
8 process.EcalTrivialConditionRetriever.intercalibConstantsMCFile = cms.untracked.string("EcalIntercalibConstantsMC_digi_2011_V3_Bon_mc.xml")
9 
10 
11 
12 process.load("CondCore.DBCommon.CondDBCommon_cfi")
13 process.CondDBCommon.connect = 'oracle://cms_orcoff_prep/CMS_COND_ECAL'
14 process.CondDBCommon.DBParameters.authenticationPath = '/afs/cern.ch/cms/DB/conddb/'
15 #process.CondDBCommon.connect = 'sqlite_file:DB.db'
16 
17 process.MessageLogger = cms.Service("MessageLogger",
18  debugModules = cms.untracked.vstring('*'),
19  destinations = cms.untracked.vstring('cout')
20 )
21 
22 process.source = cms.Source("EmptyIOVSource",
23  firstValue = cms.uint64(1),
24  lastValue = cms.uint64(1),
25  timetype = cms.string('runnumber'),
26  interval = cms.uint64(1)
27 )
28 
29 process.PoolDBOutputService = cms.Service("PoolDBOutputService",
30  process.CondDBCommon,
31  toPut = cms.VPSet( cms.PSet(
32  record = cms.string('EcalIntercalibConstantsRcd'),
33  tag = cms.string('EcalIntercalibConstants_TL3000_IL5E34_mc')
34  )
35  )
36 )
37 
38 process.dbCopy = cms.EDAnalyzer("EcalDBCopy",
39  timetype = cms.string('runnumber'),
40  toCopy = cms.VPSet(
41  cms.PSet(
42  record = cms.string('EcalIntercalibConstantsRcd'),
43  container = cms.string('EcalIntercalibConstants')
44  ))
45 )
46 
47 
48 
49 process.p = cms.Path(process.dbCopy)
50