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
|
import FWCore.ParameterSet.Config as cms
process = cms.Process('test')
import sys
if len(sys.argv) > 2:
startrun = sys.argv[1]
subdir = sys.argv[2]+"/"
else:
print("not able to run")
exit()
process.source = cms.Source("EmptyIOVSource",
timetype = cms.string('runnumber'),
firstValue = cms.uint64(int(startrun)),
lastValue = cms.uint64(int(startrun)),
interval = cms.uint64(1)
)
# load the alignment xml file
process.load("CalibPPS.ESProducers.ctppsRPAlignmentCorrectionsDataESSourceXML_cfi")
#process.ctppsRPAlignmentCorrectionsDataESSourceXML.XMLFile = cms.string("CondFormats/PPSObjects/xml/sample_alignment_corrections.xml")
process.ctppsRPAlignmentCorrectionsDataESSourceXML.RealFiles = cms.vstring(
"CondFormats/PPSObjects/xml/sample_alignment_corrections.xml"
#"CondTools/CTPPS/test/RPixGeometryCorrections.xml",
#"CondTools/CTPPS/test/"+subdir+"real_alignment_iov"+startrun+".xml"
)
process.ctppsRPAlignmentCorrectionsDataESSourceXML.MeasuredFiles = cms.vstring("CondFormats/PPSObjects/xml/sample_alignment_corrections.xml")
process.ctppsRPAlignmentCorrectionsDataESSourceXML.MisalignedFiles = cms.vstring("CondFormats/PPSObjects/xml/sample_alignment_corrections.xml")
#Database output service
process.load("CondCore.CondDB.CondDB_cfi")
# output database (in this case local sqlite file)
process.CondDB.connect = 'sqlite_file:CTPPSRPRealAlignment_table.db'
process.PoolDBOutputService = cms.Service("PoolDBOutputService",
process.CondDB,
timetype = cms.untracked.string('runnumber'),
toPut = cms.VPSet(
cms.PSet(
record = cms.string('RPRealAlignmentRecord'),
tag = cms.string('CTPPSRPAlignment_real_table'),
)
)
)
# print the mapping and analysis mask
process.writeCTPPSRPAlignments = cms.EDAnalyzer("CTPPSRPAlignmentInfoAnalyzer",
cms.PSet(
iov = cms.uint64(int(startrun)),
record = cms.string("RPRealAlignmentRecord")
)
)
process.path = cms.Path(
process.writeCTPPSRPAlignments
)
|