45 options = parser.parse_args(items)
47 if options.conditions==
"help":
48 from Configuration.AlCa
import autoCond
50 for k
in autoCond.autoCond:
51 possible+=
"\nauto:"+k+
" -> "+
str(autoCond.autoCond[k])
52 parser.error(
"Possibilities for the --conditions option: "+possible)
60 if options.triggerResultsProcess ==
None and "ALCAOUTPUT" in options.step:
61 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")
64 if not options.evt_type:
65 options.evt_type=sys.argv[1]
70 if options.dirin!=
'' and (
not options.dirin.endswith(
'/')): options.dirin+=
'/' 71 if options.dirout!=
'' and (
not options.dirout.endswith(
'/')): options.dirout+=
'/' 76 prec_step = {
"NONE":
"",
93 "RAW2DIGI":
"DIGI2RAW",
94 "RAW2RECO":
"DIGI2RAW",
103 trimmedEvtType=options.evt_type.split(
'/')[-1]
106 options.trimmedStep=[]
107 for s
in options.step.split(
','):
109 options.trimmedStep.append(step)
110 first_step=options.trimmedStep[0]
116 'ALL':
'GEN,SIM,DIGI,L1,DIGI2RAW,HLT:GRun,RAW2DIGI,RECO,POSTRECO,VALIDATION,DQM',
117 'DATA_CHAIN':
'RAW2DIGI,RECO,POSTRECO,DQM' 119 if options.step
in stepsAliases:
120 options.step=stepsAliases[options.step]
122 options.step = options.step.replace(
"SIM_CHAIN",
"GEN,SIM,DIGI,L1,DIGI2RAW")
126 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 ==
"":
128 if (
"SKIM" in options.step
and not "RECO" in options.step):
130 if (
"ENDJOB" in options.step):
132 if (
'DQMIO' in options.datatier):
135 options.step=options.step+
',ENDJOB' 139 if options.filetype==defaultOptions.filetype:
140 if options.filein.lower().endswith(
".lhe")
or options.filein.lower().endswith(
".lhef")
or options.filein.startswith(
"lhe:"):
141 options.filetype=
"LHE" 142 elif options.filein.startswith(
"mcdb:"):
143 print(
"This is a deprecated way of selecting lhe files from article number. Please use lhe:article argument to --filein")
144 options.filein=options.filein.replace(
'mcdb:',
'lhe:')
145 options.filetype=
"LHE" 147 options.filetype=
"EDM" 149 filesuffix = {
"LHE":
"lhe",
"EDM":
"root",
"MCDB":
"",
"DQM":
"root"}[options.filetype]
151 if options.filein==
"" and not (first_step
in (
"ALL",
"GEN",
"LHE",
"SIM_CHAIN")):
152 options.dirin=
"file:"+options.dirin.replace(
'file:',
'')
153 options.filein=trimmedEvtType+
"_"+prec_step[first_step]+
"."+filesuffix
158 standardFileName =
"" 159 standardFileName = trimmedEvtType+
"_"+
"_".
join(options.trimmedStep)
160 standardFileName = standardFileName.replace(
",",
"_").
replace(
".",
"_")
161 if options.pileup !=
"NoPileUp":
162 standardFileName +=
"_PU" 166 if options.fileout==
"" and not first_step
in (
"HARVESTING",
"ALCAHARVEST"):
167 options.fileout = standardFileName+
".root" 170 if not options.python_filename:
171 options.python_filename = standardFileName+
'.py' 179 if 'reSIM' in options.trimmedStep:
180 options.name =
'RESIM' 181 elif 'reDIGI' in options.trimmedStep:
182 options.name =
'REDIGI' 183 elif 'HLT' in options.trimmedStep:
185 elif 'RECO' in options.trimmedStep:
186 options.name =
'RECO' 187 elif options.trimmedStep == [
'NONE']
and options.filetype
in (
'LHE',
'MCDB'):
189 elif len(options.trimmedStep)==0:
190 options.name =
'PROCESS' 192 options.name = options.trimmedStep[-1]
198 if "HARVESTING" in options.trimmedStep
and len(options.trimmedStep) > 1:
199 raise Exception(
"The Harvesting step must be run alone")
202 if not options.isData
and not options.isMC:
203 if 'LHE' in options.trimmedStep
or 'LHE' in options.datatier:
205 if 'GEN' in options.trimmedStep
or 'GEN' in options.datatier:
207 if 'SIM' in options.trimmedStep:
209 if 'CFWRITER' in options.trimmedStep:
211 if 'DIGI' in options.trimmedStep:
213 if 'DIGI2RAW' in options.trimmedStep:
215 if (
not (options.eventcontent ==
None))
and 'SIM' in options.eventcontent:
217 if 'SIM' in options.datatier:
219 if 'VALIDATION' in options.trimmedStep:
221 if options.era
and 'Phase2' in options.era:
224 print(
'We have determined that this is simulation (if not, rerun cmsDriver.py with --data)')
226 print(
'We have determined that this is real data (if not, rerun cmsDriver.py with --mc)')
230 if options.profile
and options.prefix:
231 raise Exception(
"--profile and --prefix are incompatible")
233 profileOpts = options.profile.split(
':')
235 profilerType = profileOpts[0].
replace(
"=",
" ")
237 if profilerType ==
"pp":
238 options.profileTypeLabel =
"performance" 239 elif profilerType ==
"mp":
240 options.profileTypeLabel =
"memory" 241 elif profilerType.startswith(
"fp "):
242 options.profileTypeLabel = profilerType.replace(
"fp ",
"")
244 raise Exception(
"Not a valid profiler type %s. Alternatives are pp, mp, fp=<function>."%(profilerType))
246 options.prefix =
"igprof -t cmsRun -%s" % profilerType
248 if options.heap_profile:
249 if options.profile
and options.prefix:
250 raise Exception(
"--heap_profile and --prefix are incompatible")
252 options.prefix =
"MALLOC_CONF=prof:true,prof_accum:true,prof_prefix:jeprof.out cmsRunJE " 256 from Configuration.StandardSequences.Eras
import eras
258 requestedEras = options.era.split(
",")
260 for eraName
in requestedEras :
261 if not hasattr( eras, eraName )
or not checkModifier(getattr(eras,eraName)):
263 for key
in eras.__dict__ :
265 if validOptions!=
"" : validOptions+=
", " 266 validOptions+=
"'"+key+
"'" 267 raise Exception(
"'%s' is not a valid option for '--era'. Valid options are %s." % (eraName, validOptions) )
271 options.era+=
",fastSim" 273 options.era=
"fastSim" 276 if options.fast
and not options.scenario ==
"pp":
277 raise Exception(
"ERROR: the --option fast is only compatible with the default scenario (--scenario=pp)")
278 if options.fast
and 'HLT' in options.trimmedStep:
279 raise Exception(
"ERROR: the --option fast is incompatible with HLT (HLT is no longer available in FastSim)")
283 def OptionsFromItems(items)
def replace(string, replacements)
void print(TMatrixD &m, const char *label=nullptr, bool mathematicaFormat=false)
static std::string join(char **cmd)