CMS 3D CMS Logo

updateADCToGeV_express.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 
26 process.CondDB.connect = conddb_init.options.destinationDatabase
27 
28 
29 process.PoolDBOutputService = cms.Service("PoolDBOutputService",
30  process.CondDB,
31  toPut = cms.VPSet(cms.PSet(
32  record = cms.string('EcalADCToGeVConstantRcd'),
33  tag = cms.string(conddb_init.options.destinationTag)
34  ))
35 )
36 
37 db_service,db_user,db_pwd = auth.get_readOnly_db_credentials()
38 
39 process.Test1 = cms.EDAnalyzer("ExTestEcalADCToGeVAnalyzer",
40  record = cms.string('EcalADCToGeVConstantRcd'),
41  loggingOn= cms.untracked.bool(True),
42  IsDestDbCheckedInQueryLog=cms.untracked.bool(True),
43  SinceAppendMode=cms.bool(True),
44  Source=cms.PSet(
45  FileLowField = cms.string('/data/O2O/Ecal/TPG/ADCToGeV_Boff.xml'),
46  FileHighField = cms.string('/data/O2O/Ecal/TPG/ADCToGeV_Bon.xml'),
47 # FileLowField = cms.string('/afs/cern.ch/work/d/depasse/cmssw/CMSSW_8_0_1/src/CondTools/Ecal/python/ADCToGeV_express_current_BOFF.xml'),
48 # FileHighField = cms.string('/afs/cern.ch/work/d/depasse/cmssw/CMSSW_8_0_1/src/CondTools/Ecal/python/ADCToGeV_express_current_BON.xml'),
49  firstRun = cms.string('207149'),
50  lastRun = cms.string('10000000'),
51  OnlineDBSID = cms.string(db_service),
52  OnlineDBUser = cms.string(db_user),
53  OnlineDBPassword = cms.string( db_pwd ),
54  LocationSource = cms.string('P5'),
55  Location = cms.string('P5_Co'),
56  GenTag = cms.string('GLOBAL'),
57  RunType = cms.string('COSMICS')
58  )
59 )
60 
61 process.p = cms.Path(process.Test1)