1 import FWCore.ParameterSet.Config
as cms
3 process = cms.Process(
"TEST")
4 process.load(
"CalibCalorimetry.EcalTrivialCondModules.EcalTrivialCondRetriever_cfi")
5 process.EcalTrivialConditionRetriever.TotLumi = cms.untracked.double(1000.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")
12 process.load(
"CondCore.DBCommon.CondDBCommon_cfi")
14 process.CondDBCommon.DBParameters.authenticationPath =
'/afs/cern.ch/cms/DB/conddb/' 15 process.CondDBCommon.connect =
'sqlite_file:DB.db' 17 process.MessageLogger = cms.Service(
"MessageLogger",
18 cerr = cms.untracked.PSet(
19 enable = cms.untracked.bool(
False)
21 cout = cms.untracked.PSet(
22 enable = cms.untracked.bool(
True)
24 debugModules = cms.untracked.vstring(
'*')
27 process.source = cms.Source(
"EmptyIOVSource",
28 firstValue = cms.uint64(1),
29 lastValue = cms.uint64(1),
30 timetype = cms.string(
'runnumber'),
31 interval = cms.uint64(1)
34 process.PoolDBOutputService = cms.Service(
"PoolDBOutputService",
36 toPut = cms.VPSet(cms.PSet(
37 record = cms.string(
'EcalPedestalsRcd'),
38 tag = cms.string(
'EcalPedestals_TL1000_IL5E34_mc')
41 record = cms.string(
'EcalLaserAPDPNRatiosRcd'),
42 tag = cms.string(
'EcalLaserAPDPNRatios_TL1000_IL5E34_mc')
45 record = cms.string(
'EcalIntercalibConstantsRcd'),
46 tag = cms.string(
'EcalIntercalibConstants_TL1000_IL5E34_mc')
48 record = cms.string(
'EcalIntercalibConstantsMCRcd'),
49 tag = cms.string(
'EcalIntercalibConstantsMC_TL1000_IL5E34_mc')
54 process.dbCopy = cms.EDAnalyzer(
"EcalDBCopy",
55 timetype = cms.string(
'runnumber'),
56 toCopy = cms.VPSet(cms.PSet(
57 record = cms.string(
'EcalPedestalsRcd'),
58 container = cms.string(
'EcalPedestals')
61 record = cms.string(
'EcalLaserAPDPNRatiosRcd'),
62 container = cms.string(
'EcalLaserAPDPNRatios')
65 record = cms.string(
'EcalIntercalibConstantsRcd'),
66 container = cms.string(
'EcalIntercalibConstants')
69 record = cms.string(
'EcalIntercalibConstantsMCRcd'),
70 container = cms.string(
'EcalIntercalibConstantsMC')
76 process.p = cms.Path(process.dbCopy)