CMS 3D CMS Logo

updateTPGWeightGroup.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:EcalTPGWeightGroup.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('EcalTPGWeightGroupRcd'),
30  tag = cms.string('EcalTPGWeightGroup')
31  )
32  )
33 )
34 
35 process.Test1 = cms.EDAnalyzer("ExTestEcalTPGWeightGroupAnalyzer",
36  record = cms.string('EcalTPGWeightGroupRcd'),
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  lastRun = cms.string('10'),
43  OnlineDBSID = cms.string(''),
44  OnlineDBUser = cms.string(''),
45  OnlineDBPassword = cms.string(''),
46  LocationSource = cms.string(''),
47  Location = cms.string(''),
48  GenTag = cms.string(''),
49  RunType = cms.string(''),
50  fileType = cms.string('xml'),
51 # fileType = cms.string('txt'),
52  fileName = cms.string('EcalTPGWeightGroup.xml'),
53 # fileName = cms.string('EcalTPGWeightGroup.txt'),
54  )
55 )
56 
57 process.p = cms.Path(process.Test1)