1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
|
import FWCore.ParameterSet.Config as cms
import FWCore.ParameterSet.Config as cms
process = cms.Process("TEST")
process.MessageLogger = cms.Service("MessageLogger",
cerr = cms.untracked.PSet(
enable = cms.untracked.bool(False)
),
cout = cms.untracked.PSet(
enable = cms.untracked.bool(True),
threshold = cms.untracked.string('INFO')
)
)
process.load("CondCore.DBCommon.CondDBCommon_cfi")
#process.CondDBCommon.connect = cms.string('sqlite_file:testExample.db')
#process.CondDBCommon.connect = cms.string('oracle://cms_orcoff_prep/CMS_COND_30X_HCAL')
process.CondDBCommon.connect = cms.string('oracle://cms_orcon_prod/CMS_COND_31X_HCAL')
process.CondDBCommon.DBParameters.authenticationPath = cms.untracked.string('/nfshome0/popcondev/conddb')
process.source = cms.Source("EmptyIOVSource",
timetype = cms.string('runnumber'),
firstValue = cms.uint64(1),
lastValue = cms.uint64(1),
interval = cms.uint64(1)
)
process.es_ascii = cms.ESSource("CastorTextCalibrations",
input = cms.VPSet(cms.PSet(
object = cms.string('Gains'),
file = cms.FileInPath('CondFormats/CastorObjects/data/castor_gains.txt')
#file = cms.FileInPath('CondFormats/CastorObjects/data/castor_gains_Run124009-132957.txt')
#file = cms.FileInPath('CondFormats/CastorObjects/data/castor_gains_Run132958-138559.txt')
#file = cms.FileInPath('CondFormats/CastorObjects/data/castor_gains_Run138560-141955.txt')
#file = cms.FileInPath('CondFormats/CastorObjects/data/castor_gains_Run141956-150430.txt')
#file = cms.FileInPath('CondFormats/CastorObjects/data/castor_gains_Run150431-150589.txt')
#file = cms.FileInPath('CondFormats/CastorObjects/data/castor_gains_Run150590-158416.txt')
#file = cms.FileInPath('CondFormats/CastorObjects/data/castor_gains_Run158417.txt')
))
)
process.PoolDBOutputService = cms.Service("PoolDBOutputService",
process.CondDBCommon,
timetype = cms.untracked.string('runnumber'),
# logconnect= cms.untracked.string('sqlite_file:log.db'),
logconnect= cms.untracked.string('oracle://cms_orcon_prod/CMS_COND_31X_POPCONLOG'),
toPut = cms.VPSet(cms.PSet(
record = cms.string('CastorGainsRcd'),
tag = cms.string('CastorGains_v2.1_hlt')
))
)
process.mytest = cms.EDAnalyzer("CastorGainsPopConAnalyzer",
record = cms.string('CastorGainsRcd'),
loggingOn= cms.untracked.bool(True),
SinceAppendMode=cms.bool(True),
Source=cms.PSet(
# firstSince=cms.untracked.double(300)
IOVRun=cms.untracked.uint32(1)
#IOVRun=cms.untracked.uint32(124009)
#IOVRun=cms.untracked.uint32(132958)
#IOVRun=cms.untracked.uint32(138560)
#IOVRun=cms.untracked.uint32(141956)
#IOVRun=cms.untracked.uint32(150431)
#IOVRun=cms.untracked.uint32(150590)
#IOVRun=cms.untracked.uint32(158417)
)
)
process.p = cms.Path(process.mytest)
process = cms.Process("TEST")
process.MessageLogger = cms.Service("MessageLogger",
cerr = cms.untracked.PSet(
enable = cms.untracked.bool(False)
),
cout = cms.untracked.PSet(
enable = cms.untracked.bool(True),
threshold = cms.untracked.string('INFO')
)
)
process.load("CondCore.DBCommon.CondDBCommon_cfi")
#process.CondDBCommon.connect = cms.string('sqlite_file:testExample.db')
#process.CondDBCommon.connect = cms.string('oracle://cms_orcoff_prep/CMS_COND_30X_HCAL')
process.CondDBCommon.connect = cms.string('oracle://cms_orcon_prod/CMS_COND_31X_HCAL')
process.CondDBCommon.DBParameters.authenticationPath = cms.untracked.string('/nfshome0/popcondev/conddb')
process.source = cms.Source("EmptyIOVSource",
timetype = cms.string('runnumber'),
firstValue = cms.uint64(1),
lastValue = cms.uint64(1),
interval = cms.uint64(1)
)
process.es_ascii = cms.ESSource("CastorTextCalibrations",
input = cms.VPSet(cms.PSet(
object = cms.string('Gains'),
#file = cms.FileInPath('CondFormats/CastorObjects/data/castor_gains.txt')
#file = cms.FileInPath('CondFormats/CastorObjects/data/castor_gains_Run124009-132957.txt')
#file = cms.FileInPath('CondFormats/CastorObjects/data/castor_gains_Run132958-138559.txt')
#file = cms.FileInPath('CondFormats/CastorObjects/data/castor_gains_Run138560-141955.txt')
#file = cms.FileInPath('CondFormats/CastorObjects/data/castor_gains_Run141956-150430.txt')
#file = cms.FileInPath('CondFormats/CastorObjects/data/castor_gains_Run150431-150589.txt')
#file = cms.FileInPath('CondFormats/CastorObjects/data/castor_gains_Run150590-158416.txt')
file = cms.FileInPath('CondFormats/CastorObjects/data/castor_gains_Run158417.txt')
))
)
process.PoolDBOutputService = cms.Service("PoolDBOutputService",
process.CondDBCommon,
timetype = cms.untracked.string('runnumber'),
# logconnect= cms.untracked.string('sqlite_file:log.db'),
logconnect= cms.untracked.string('oracle://cms_orcon_prod/CMS_COND_31X_POPCONLOG'),
toPut = cms.VPSet(cms.PSet(
record = cms.string('CastorGainsRcd'),
#tag = cms.string('CastorGains_v2.1_hlt')
tag = cms.string('castor_gains_v1.0_hlt')
))
)
process.mytest = cms.EDAnalyzer("CastorGainsPopConAnalyzer",
record = cms.string('CastorGainsRcd'),
loggingOn= cms.untracked.bool(True),
SinceAppendMode=cms.bool(True),
Source=cms.PSet(
# firstSince=cms.untracked.double(300)
#IOVRun=cms.untracked.uint32(1)
#IOVRun=cms.untracked.uint32(124009)
#IOVRun=cms.untracked.uint32(132958)
#IOVRun=cms.untracked.uint32(138560)
#IOVRun=cms.untracked.uint32(141956)
#IOVRun=cms.untracked.uint32(150431)
#IOVRun=cms.untracked.uint32(150590)
#IOVRun=cms.untracked.uint32(158417)
IOVRun=cms.untracked.uint32(164799)
)
)
process.p = cms.Path(process.mytest)
|