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
|
import FWCore.ParameterSet.Config as cms
import FWCore.ParameterSet.VarParsing as VarParsing
process = cms.Process("Demo")
#prepare options
options = VarParsing.VarParsing("analysis")
options.register ('globalTag',
"auto:run3_data_prompt",
VarParsing.VarParsing.multiplicity.singleton, # singleton or list
VarParsing.VarParsing.varType.string, # string, int, or float
"GlobalTag")
options.register ('runNumber',
1,
VarParsing.VarParsing.multiplicity.singleton, # singleton or list
VarParsing.VarParsing.varType.int, # string, int, or float
"run number")
options.register ('additionalConds',
"sqlite_file:gainManipulations.db",
VarParsing.VarParsing.multiplicity.singleton, # singleton or list
VarParsing.VarParsing.varType.string, # string, int, or float
"location of the additional conditions")
options.parseArguments()
##
## MessageLogger
##
process.load('FWCore.MessageService.MessageLogger_cfi')
process.MessageLogger.cerr.enable = False
process.MessageLogger.SiStripApvGainRescaler=dict()
process.MessageLogger.cout = cms.untracked.PSet(
enable = cms.untracked.bool(True),
enableStatistics = cms.untracked.bool(True),
threshold = cms.untracked.string("INFO"),
default = cms.untracked.PSet(limit = cms.untracked.int32(0)),
FwkReport = cms.untracked.PSet(limit = cms.untracked.int32(-1),
reportEvery = cms.untracked.int32(1000)
),
SiStripApvGainRescaler = cms.untracked.PSet( limit = cms.untracked.int32(-1))
)
process.load('Configuration.StandardSequences.FrontierConditions_GlobalTag_cff')
from Configuration.AlCa.GlobalTag import GlobalTag
process.GlobalTag = GlobalTag(process.GlobalTag,options.globalTag, '')
process.GlobalTag.toGet = cms.VPSet(
### N.B. This contains the G1_new (to be used for the rescale)
cms.PSet(record = cms.string("SiStripApvGain3Rcd"),
tag = cms.string("G1_new"),
connect = cms.string(options.additionalConds)
),
### N.B. This contains the G2_old (to be used for the rescale)
cms.PSet(record = cms.string("SiStripApvGain2Rcd"),
tag = cms.string("G2_old"),
connect = cms.string(options.additionalConds)
),
### N.B. This contains the G1_old (to be used for the rescale)
cms.PSet(record = cms.string("SiStripApvGainRcd"),
tag = cms.string("G1_old"),
connect = cms.string(options.additionalConds)
)
)
process.source = cms.Source("EmptySource",
firstRun = cms.untracked.uint32(options.runNumber),
numberEventsInRun = cms.untracked.uint32(1),
)
process.maxEvents = cms.untracked.PSet( input = cms.untracked.int32(1) )
process.load("CondTools.SiStrip.rescaleGain2byGain1_cfi")
# process.demo = cms.EDAnalyzer('SiStripApvGainRescaler',
# Record = cms.untracked.string("SiStripApvGainRcd"),
# )
##
## Database output service
##
process.load("CondCore.CondDB.CondDB_cfi")
##
## Output database (in this case local sqlite file)
##
process.CondDB.connect = 'sqlite_file:G2_new.db'
process.PoolDBOutputService = cms.Service("PoolDBOutputService",
process.CondDB,
timetype = cms.untracked.string('runnumber'),
toPut = cms.VPSet(cms.PSet(record = cms.string('SiStripApvGainRcd'),
tag = cms.string('G2_new')
)
)
)
process.p = cms.Path(process.rescaleGain2byGain1)
|