CMS 3D CMS Logo

updateIntercali.py
Go to the documentation of this file.
1 import FWCore.ParameterSet.Config as cms
2 
3 process = cms.Process("ProcessOne")
4 
5 process.MessageLogger = cms.Service("MessageLogger",
6  debugModules = cms.untracked.vstring('*'),
7  cout = cms.untracked.PSet(
8  threshold = cms.untracked.string('DEBUG')
9  ),
10  destinations = cms.untracked.vstring('cout')
11 )
12 
13 process.source = cms.Source("EmptyIOVSource",
14  lastValue = cms.uint64(100000000000),
15  timetype = cms.string('runnumber'),
16  firstValue = cms.uint64(100000000000),
17  interval = cms.uint64(1)
18 )
19 
20 process.load("CondCore.CondDB.CondDB_cfi")
21 
22 process.CondDB.connect = 'sqlite_file:EcalIntercalibConstants.db'
23 
24 process.PoolDBOutputService = cms.Service("PoolDBOutputService",
25  process.CondDB,
26  logconnect = cms.untracked.string('sqlite_file:log.db'),
27  toPut = cms.VPSet(
28  cms.PSet(
29  record = cms.string('EcalIntercalibConstantsRcd'),
30  tag = cms.string('EcalIntercalibConstants')
31  )
32  )
33 )
34 
35 process.Test1 = cms.EDAnalyzer("ExTestEcalIntercalibAnalyzer",
36  record = cms.string('EcalIntercalibConstantsRcd'),
37  loggingOn= cms.untracked.bool(True),
38  IsDestDbCheckedInQueryLog=cms.untracked.bool(True),
39  SinceAppendMode=cms.bool(True),
40  Source=cms.PSet(
41  firstRun = cms.string('1'),
42 # type = cms.string('txt'),
43 # fileName = cms.string('IC2017.txt'),
44  type = cms.string('xml'),
45  fileName = cms.string('Intercalib_Bon.xml'),
46  )
47 )
48 
49 process.p = cms.Path(process.Test1)