CMS 3D CMS Logo

updateIntercali_hlt.py
Go to the documentation of this file.
1 import FWCore.ParameterSet.Config as cms
2 import CondTools.Ecal.conddb_init as conddb_init
3 import CondTools.Ecal.db_credentials as auth
4 
5 process = cms.Process("ProcessOne")
6 
7 process.MessageLogger = cms.Service("MessageLogger",
8  debugModules = cms.untracked.vstring('*'),
9  cout = cms.untracked.PSet(
10  threshold = cms.untracked.string('DEBUG')
11  ),
12  destinations = cms.untracked.vstring('cout')
13 )
14 
15 process.source = cms.Source("EmptyIOVSource",
16  lastValue = cms.uint64(100000000000),
17  timetype = cms.string('runnumber'),
18  firstValue = cms.uint64(100000000000),
19  interval = cms.uint64(1)
20 )
21 
22 process.load("CondCore.CondDB.CondDB_cfi")
23 
24 process.CondDB.DBParameters.authenticationPath = ''
25 process.CondDB.connect = conddb_init.options.destinationDatabase
26 
27 process.PoolDBOutputService = cms.Service("PoolDBOutputService",
28  process.CondDB,
29  toPut = cms.VPSet(cms.PSet(
30  record = cms.string('EcalIntercalibConstantsRcd'),
31  tag = cms.string(conddb_init.options.destinationTag)
32  ))
33 )
34 
35 db_reader_account = 'CMS_ECAL_R'
36 db_service,db_user,db_pwd = auth.get_db_credentials( db_reader_account )
37 
38 process.Test1 = cms.EDAnalyzer("ExTestEcalIntercalibAnalyzer",
39  record = cms.string('EcalIntercalibConstantsRcd'),
40  loggingOn= cms.untracked.bool(True),
41  IsDestDbCheckedInQueryLog=cms.untracked.bool(True),
42  SinceAppendMode=cms.bool(True),
43  Source=cms.PSet(
44  FileLowField = cms.string('Intercalib_Boff.xml'),
45  FileHighField = cms.string('Intercalib_Bon.xml'),
46  Value_Bon = cms.untracked.double(0.7041),
47  firstRun = cms.string('207149'),
48  lastRun = cms.string('10000000'),
49  OnlineDBSID = cms.string(db_service),
50  OnlineDBUser = cms.string(db_user),
51  OnlineDBPassword = cms.string( db_pwd ),
52  LocationSource = cms.string('P5'),
53  Location = cms.string('P5_Co'),
54  GenTag = cms.string('GLOBAL'),
55  RunType = cms.string('COSMICS')
56  )
57 )
58 
59 process.p = cms.Path(process.Test1)