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
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
|
import FWCore.ParameterSet.Config as cms
import FWCore.ParameterSet.VarParsing as VarParsing
from CalibTracker.SiStripCommon.shallowTree_test_template import *
###################################################################
# Setup 'standard' options
###################################################################
options = VarParsing.VarParsing()
options.register('conditionGT',
"auto:run2_data",
VarParsing.VarParsing.multiplicity.singleton,
VarParsing.VarParsing.varType.string,
"condition global tag for the job (\"auto:run2_data\" is default)")
options.register('conditionOverwrite',
"",
VarParsing.VarParsing.multiplicity.singleton,
VarParsing.VarParsing.varType.string,
"configuration to overwrite the condition into the GT (\"\" is default)")
options.register('inputCollection',
"ALCARECOSiStripCalMinBias",
VarParsing.VarParsing.multiplicity.singleton,
VarParsing.VarParsing.varType.string,
"collections to be used for input (\"ALCARECOSiStripCalMinBias\" is default)")
options.register('outputFile',
"calibTreeTest.root",
VarParsing.VarParsing.multiplicity.singleton,
VarParsing.VarParsing.varType.string,
"name for the output root file (\"calibTreeTest.root\" is default)")
options.register('inputFiles',
# "/store/data/Run2015D/ZeroBias/ALCARECO/SiStripCalMinBias-16Dec2015-v1/60007/869EE593-1FAB-E511-AF99-0025905A60B4.root",
# '/store/data/Run2015D/ZeroBias/ALCARECO/SiStripCalMinBias-16Dec2015-v1/60009/0C35C6BF-D3AA-E511-9BC9-0CC47A4C8E16.root',
# '/store/data/Run2015D/ZeroBias/ALCARECO/SiStripCalMinBias-16Dec2015-v1/60009/38B847F9-05AA-E511-AB78-00259074AE82.root',
# '/store/data/Run2015D/ZeroBias/ALCARECO/SiStripCalMinBias-16Dec2015-v1/60009/D0BAD20B-09AB-E511-B073-0026189438F6.root',
# '/store/data/Run2015D/ZeroBias/ALCARECO/SiStripCalMinBias-16Dec2015-v1/60009/DEFA8704-CCAA-E511-8203-0CC47A4D7634.root',
# '/store/data/Run2015D/ZeroBias/ALCARECO/SiStripCalMinBias-16Dec2015-v1/60009/FE24690A-2DAA-E511-A96A-00259074AE3E.root',
# '/store/data/Run2015D/ZeroBias/ALCARECO/SiStripCalMinBias-16Dec2015-v1/00000/0443D984-F9BA-E511-A740-0025905B8610.root',
'/store/data/Run2015D/ZeroBias/ALCARECO/SiStripCalMinBias-14Apr2016-v1/50000/0085DB76-AC02-E611-9F0C-0002C94CD12E.root',
VarParsing.VarParsing.multiplicity.list,
VarParsing.VarParsing.varType.string,
"file to process")
options.register('maxEvents',
-1,
VarParsing.VarParsing.multiplicity.singleton,
VarParsing.VarParsing.varType.int,
"number of events to process (\"-1\" for all)")
options.register('runNumber',
-1,
VarParsing.VarParsing.multiplicity.singleton,
VarParsing.VarParsing.varType.int,
"run number to process (\"-1\" for all)")
# To use the prompt reco dataset please use 'generalTracks' as inputCollection
# To use the cosmic reco dataset please use 'ctfWithMaterialTracksP5' as inputCollection
options.parseArguments()
print("conditionGT : ", options.conditionGT)
print("conditionOverwrite: ", options.conditionOverwrite)
print("inputCollection : ", options.inputCollection)
print("maxEvents : ", options.maxEvents)
print("outputFile : ", options.outputFile)
print("inputFiles : ", options.inputFiles)
print("runNumber : ", options.runNumber)
process = cms.Process('CALIB')
process.load('CalibTracker.Configuration.setupCalibrationTree_cff')
process.load('Configuration/StandardSequences/MagneticField_cff')
process.load('Configuration.Geometry.GeometryRecoDB_cff')
process.load('Configuration.StandardSequences.FrontierConditions_GlobalTag_cff')
process.load('CalibTracker.SiStripCommon.ShallowEventDataProducer_cfi') #event Info
from Configuration.AlCa.GlobalTag import GlobalTag
process.GlobalTag = GlobalTag(process.GlobalTag, options.conditionGT, options.conditionOverwrite)
process.load('FWCore.MessageService.MessageLogger_cfi')
process.load('Configuration.StandardSequences.Services_cff')
process.add_( cms.Service( "TFileService",
fileName = cms.string( options.outputFile ),
closeFileFast = cms.untracked.bool(True) ) )
process.maxEvents = cms.untracked.PSet( input = cms.untracked.int32(options.maxEvents) )
#process.source = cms.Source (
# "PoolSource",
# fileNames = cms.untracked.vstring(options.inputFiles)
# )
#import runs
if options.runNumber == -1:
process.source = cms.Source (
"PoolSource",
fileNames = cms.untracked.vstring( options.inputFiles )
)
else:
print("Restricting to the following events :")
print('%s:1-%s:MAX'%(options.runNumber,options.runNumber))
process.source = cms.Source (
"PoolSource",
fileNames = cms.untracked.vstring( options.inputFiles ),
eventsToProcess = cms.untracked.VEventRange('%s:1-%s:MAX'%(options.runNumber,options.runNumber))
)
process.options = cms.untracked.PSet( wantSummary = cms.untracked.bool(True) )
process.MessageLogger.cerr.FwkReport.reportEvery = 10000
#definition of input collection
process.CalibrationTracks.src = cms.InputTag( options.inputCollection )
process.shallowTracks.Tracks = cms.InputTag( options.inputCollection )
#process.shallowGainCalibrationAllBunch = 'ALCARECOSiStripCalMinBias' #cms.InputTag( options.inputCollection )
#process.shallowGainCalibrationAllBunch0T = 'ALCARECOSiStripCalMinBias' #cms.InputTag( options.inputCollection )
#Setup prescale
process.prescaleEvent.prescale = 1
# BSCNoBeamHalo selection (Not to use for Cosmic Runs) --- OUTDATED!!!
## process.load('L1TriggerConfig.L1GtConfigProducers.L1GtTriggerMaskTechTrigConfig_cff')
## process.load('HLTrigger/HLTfilters/hltLevel1GTSeed_cfi')
## process.L1T1=process.hltLevel1GTSeed.clone()
## process.L1T1.L1TechTriggerSeeding = cms.bool(True)
## process.L1T1.L1SeedsLogicalExpression = cms.string('(40 OR 41) AND NOT (36 OR 37 OR 38 OR 39)')
#process.TkCalPath = cms.Path(process.L1T1*process.TkCalFullSequence)
process.eventInfo = cms.EDAnalyzer(
"ShallowTree",
outputCommands = cms.untracked.vstring(
'drop *',
'keep *_shallowEventRun_*_*',
)
)
process.TkCalPath_StdBunch = cms.Path(process.TkCalSeq_StdBunch *process.shallowEventRun*process.eventInfo)
process.TkCalPath_StdBunch0T = cms.Path(process.TkCalSeq_StdBunch0T *process.shallowEventRun*process.eventInfo)
process.TkCalPath_IsoMuon = cms.Path(process.TkCalSeq_IsoMuon *process.shallowEventRun*process.eventInfo)
process.TkCalPath_IsoMuon0T = cms.Path(process.TkCalSeq_IsoMuon0T *process.shallowEventRun*process.eventInfo)
process.TkCalPath_AagBunch = cms.Path(process.TkCalSeq_AagBunch *process.shallowEventRun*process.eventInfo)
process.TkCalPath_AagBunch0T = cms.Path(process.TkCalSeq_AagBunch0T *process.shallowEventRun*process.eventInfo)
process.schedule = cms.Schedule( process.TkCalPath_StdBunch,
process.TkCalPath_StdBunch0T,
process.TkCalPath_IsoMuon,
process.TkCalPath_IsoMuon0T,
process.TkCalPath_AagBunch,
process.TkCalPath_AagBunch0T,
)
process.options = cms.untracked.PSet(
Rethrow = cms.untracked.vstring('OtherCMS',
'StdException',
'Unknown',
'BadAlloc',
'BadExceptionType',
'ProductNotFound',
'DictionaryNotFound',
'InsertFailure',
'Configuration',
'LogicError',
'UnimplementedFeature',
'InvalidReference',
'NullPointerError',
'NoProductSpecified',
'EventTimeout',
'EventCorruption',
'ScheduleExecutionFailure',
'EventProcessorFailure',
'FileInPathError',
'FileOpenError',
'FileReadError',
'FatalRootError',
'MismatchedInputFiles',
'ProductDoesNotSupportViews',
'ProductDoesNotSupportPtr',
'NotFound')
)
|