46 for (index,item)
in enumerate(items):
47 for (opt,value)
in threeValued:
48 if (
str(item)
in opt)
and (index==len(items)-1
or items[index+1].startswith(
'-')):
49 items.insert(index+1,value)
51 (options,args) = parser.parse_args(items)
53 if not options.conditions
or options.conditions==
"help":
54 from Configuration.AlCa
import autoCond
56 for k
in autoCond.autoCond:
57 possible+=
"\nauto:"+k+
" -> "+
str(autoCond.autoCond[k])
58 raise Exception(
"the --conditions option is mandatory. Possibilities are: "+possible)
66 if options.triggerResultsProcess ==
None and "ALCAOUTPUT" in options.step:
67 print(
"ERROR: If ALCA splitting is requested, the name of the process in which the alca producers ran needs to be specified. E.g. via --triggerResultsProcess RECO")
70 if not options.evt_type:
71 options.evt_type=sys.argv[1]
76 nStreams = options.nStreams
if options.nStreams !=
'0' else options.nThreads
77 if options.nConcurrentLumis ==
'0':
78 options.nConcurrentLumis =
'1' if nStreams ==
'1' else '2'
79 if options.nConcurrentIOVs ==
'0':
80 options.nConcurrentIOVs = options.nConcurrentLumis
83 if options.dirin!=
'' and (
not options.dirin.endswith(
'/')): options.dirin+=
'/'
84 if options.dirout!=
'' and (
not options.dirout.endswith(
'/')): options.dirout+=
'/'
89 prec_step = {
"NONE":
"",
106 "RAW2DIGI":
"DIGI2RAW",
107 "RAW2RECO":
"DIGI2RAW",
109 "DIGI2RAW":
"DATAMIX",
111 "ALCAHARVEST":
"RECO",
116 trimmedEvtType=options.evt_type.split(
'/')[-1]
119 options.trimmedStep=[]
120 for s
in options.step.split(
','):
122 options.trimmedStep.append(step)
123 first_step=options.trimmedStep[0]
129 'ALL':
'GEN,SIM,DIGI,L1,DIGI2RAW,HLT:GRun,RAW2DIGI,RECO,POSTRECO,VALIDATION,DQM',
130 'DATA_CHAIN':
'RAW2DIGI,RECO,POSTRECO,DQM'
132 if options.step
in stepsAliases:
133 options.step=stepsAliases[options.step]
135 options.step = options.step.replace(
"SIM_CHAIN",
"GEN,SIM,DIGI,L1,DIGI2RAW")
139 if (
"FASTSIM" in options.step
and not "VALIDATION" in options.step)
or "HARVESTING" in options.step
or "ALCAHARVEST" in options.step
or "ALCAOUTPUT" in options.step
or options.step ==
"":
141 if (
"SKIM" in options.step
and not "RECO" in options.step):
143 if (
"ENDJOB" in options.step):
145 if (
'DQMIO' in options.datatier):
148 options.step=options.step+
',ENDJOB'
152 if options.filetype==defaultOptions.filetype:
153 if options.filein.lower().endswith(
".lhe")
or options.filein.lower().endswith(
".lhef")
or options.filein.startswith(
"lhe:"):
154 options.filetype=
"LHE"
155 elif options.filein.startswith(
"mcdb:"):
156 print(
"This is a deprecated way of selecting lhe files from article number. Please use lhe:article argument to --filein")
157 options.filein=options.filein.replace(
'mcdb:',
'lhe:')
158 options.filetype=
"LHE"
160 options.filetype=
"EDM"
162 filesuffix = {
"LHE":
"lhe",
"EDM":
"root",
"MCDB":
"",
"DQM":
"root"}[options.filetype]
164 if options.filein==
"" and not (first_step
in (
"ALL",
"GEN",
"LHE",
"SIM_CHAIN")):
165 options.dirin=
"file:"+options.dirin.replace(
'file:',
'')
166 options.filein=trimmedEvtType+
"_"+prec_step[first_step]+
"."+filesuffix
171 standardFileName =
""
172 standardFileName = trimmedEvtType+
"_"+
"_".
join(options.trimmedStep)
173 standardFileName = standardFileName.replace(
",",
"_").
replace(
".",
"_")
174 if options.pileup !=
"NoPileUp":
175 standardFileName +=
"_PU"
179 if options.fileout==
"" and not first_step
in (
"HARVESTING",
"ALCAHARVEST"):
180 options.fileout = standardFileName+
".root"
183 if not options.python_filename:
184 options.python_filename = standardFileName+
'.py'
192 if 'reSIM' in options.trimmedStep:
193 options.name =
'RESIM'
194 elif 'reDIGI' in options.trimmedStep:
195 options.name =
'REDIGI'
196 elif 'HLT' in options.trimmedStep:
198 elif 'RECO' in options.trimmedStep:
199 options.name =
'RECO'
200 elif options.trimmedStep == [
'NONE']
and options.filetype
in (
'LHE',
'MCDB'):
202 elif len(options.trimmedStep)==0:
203 options.name =
'PROCESS'
205 options.name = options.trimmedStep[-1]
211 if "HARVESTING" in options.trimmedStep
and len(options.trimmedStep) > 1:
212 raise Exception(
"The Harvesting step must be run alone")
215 if not options.isData
and not options.isMC:
216 if 'LHE' in options.trimmedStep
or 'LHE' in options.datatier:
218 if 'GEN' in options.trimmedStep
or 'GEN' in options.datatier:
220 if 'SIM' in options.trimmedStep:
222 if 'CFWRITER' in options.trimmedStep:
224 if 'DIGI' in options.trimmedStep:
226 if 'DIGI2RAW' in options.trimmedStep:
228 if (
not (options.eventcontent ==
None))
and 'SIM' in options.eventcontent:
230 if 'SIM' in options.datatier:
233 print(
'We have determined that this is simulation (if not, rerun cmsDriver.py with --data)')
235 print(
'We have determined that this is real data (if not, rerun cmsDriver.py with --mc)')
238 if options.profile
and options.prefix:
239 raise Exception(
"--profile and --prefix are incompatible")
241 profileOpts = options.profile.split(
':')
243 profilerType = profileOpts[0].
replace(
"=",
" ")
245 if profilerType ==
"pp":
246 options.profileTypeLabel =
"performance"
247 elif profilerType ==
"mp":
248 options.profileTypeLabel =
"memory"
249 elif profilerType.startswith(
"fp "):
250 options.profileTypeLabel = profilerType.replace(
"fp ",
"")
252 raise Exception(
"Not a valid profiler type %s. Alternatives are pp, mp, fp=<function>."%(profilerType))
254 options.prefix =
"igprof -t cmsRun -%s" % profilerType
258 from Configuration.StandardSequences.Eras
import eras
260 requestedEras = options.era.split(
",")
262 for eraName
in requestedEras :
263 if not hasattr( eras, eraName )
or not checkModifier(getattr(eras,eraName)):
265 for key
in eras.__dict__ :
267 if validOptions!=
"" : validOptions+=
", "
268 validOptions+=
"'"+key+
"'"
269 raise Exception(
"'%s' is not a valid option for '--era'. Valid options are %s." % (eraName, validOptions) )
273 options.era+=
",fastSim"
275 options.era=
"fastSim"
278 if options.fast
and not options.scenario ==
"pp":
279 raise Exception(
"ERROR: the --option fast is only compatible with the default scenario (--scenario=pp)")
280 if options.fast
and 'HLT' in options.trimmedStep:
281 raise Exception(
"ERROR: the --option fast is incompatible with HLT (HLT is no longer available in FastSim)")