42 for (index,item)
in enumerate(items):
43 for (opt,value)
in threeValued:
44 if (str(item)
in opt)
and (index==len(items)-1
or items[index+1].startswith(
'-')):
45 items.insert(index+1,value)
47 (options,args) = parser.parse_args(items)
49 if not options.conditions
or options.conditions==
"help":
50 from Configuration.AlCa
import autoCond
52 for k
in autoCond.autoCond:
53 possible+=
"\nauto:"+k+
" -> "+autoCond.autoCond[k]
54 raise Exception(
"the --conditions option is mandatory. Possibilities are: "+possible)
62 if options.triggerResultsProcess ==
None and "ALCAOUTPUT" in options.step:
63 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"
66 if not options.evt_type:
67 options.evt_type=sys.argv[1]
72 if options.dirin!=
'' and (
not options.dirin.endswith(
'/')): options.dirin+=
'/'
73 if options.dirout!=
'' and (
not options.dirout.endswith(
'/')): options.dirout+=
'/'
78 prec_step = {
"NONE":
"",
88 "DIGIPREMIX_S2":
"SIM",
97 "RAW2DIGI":
"DIGI2RAW",
98 "RAW2RECO":
"DIGI2RAW",
100 "DIGI2RAW":
"DATAMIX",
102 "ALCAHARVEST":
"RECO",
105 trimmedEvtType=options.evt_type.split(
'/')[-1]
108 options.trimmedStep=[]
109 for s
in options.step.split(
','):
111 options.trimmedStep.append(step)
112 first_step=options.trimmedStep[0]
118 'ALL':
'GEN,SIM,DIGI,L1,DIGI2RAW,HLT:GRun,RAW2DIGI,RECO,POSTRECO,VALIDATION,DQM',
119 'DATA_CHAIN':
'RAW2DIGI,RECO,POSTRECO,DQM'
121 if options.step
in stepsAliases:
122 options.step=stepsAliases[options.step]
124 options.step = options.step.replace(
"SIM_CHAIN",
"GEN,SIM,DIGI,L1,DIGI2RAW")
128 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 ==
"":
130 if (
"SKIM" in options.step
and not "RECO" in options.step):
132 if (
"ENDJOB" in options.step):
134 if (
'DQMIO' in options.datatier):
137 options.step=options.step+
',ENDJOB'
141 if options.filetype==defaultOptions.filetype:
142 if options.filein.lower().endswith(
".lhe")
or options.filein.lower().endswith(
".lhef")
or options.filein.startswith(
"lhe:"):
143 options.filetype=
"LHE"
144 elif options.filein.startswith(
"mcdb:"):
145 print "This is a deprecated way of selecting lhe files from article number. Please use lhe:article argument to --filein"
146 options.filein=options.filein.replace(
'mcdb:',
'lhe:')
147 options.filetype=
"LHE"
149 options.filetype=
"EDM"
151 filesuffix = {
"LHE":
"lhe",
"EDM":
"root",
"MCDB":
"",
"DQM":
"root"}[options.filetype]
153 if options.filein==
"" and not (first_step
in (
"ALL",
"GEN",
"LHE",
"SIM_CHAIN")):
154 options.dirin=
"file:"+options.dirin.replace(
'file:',
'')
155 options.filein=trimmedEvtType+
"_"+prec_step[first_step]+
"."+filesuffix
160 standardFileName =
""
161 standardFileName = trimmedEvtType+
"_"+
"_".
join(options.trimmedStep)
162 standardFileName = standardFileName.replace(
",",
"_").
replace(
".",
"_")
163 if options.pileup !=
"NoPileUp":
164 standardFileName +=
"_PU"
168 if options.fileout==
"" and not first_step
in (
"HARVESTING",
"ALCAHARVEST"):
169 options.fileout = standardFileName+
".root"
172 if not options.python_filename:
173 options.python_filename = standardFileName+
'.py'
181 if 'reSIM' in options.trimmedStep:
182 options.name =
'RESIM'
183 elif 'reDIGI' in options.trimmedStep:
184 options.name =
'REDIGI'
185 elif 'HLT' in options.trimmedStep:
187 elif 'RECO' in options.trimmedStep:
188 options.name =
'RECO'
189 elif options.trimmedStep == [
'NONE']
and options.filetype
in (
'LHE',
'MCDB'):
191 elif len(options.trimmedStep)==0:
192 options.name =
'PROCESS'
194 options.name = options.trimmedStep[-1]
200 if "HARVESTING" in options.trimmedStep
and len(options.trimmedStep) > 1:
201 raise Exception(
"The Harvesting step must be run alone")
204 if not options.isData
and not options.isMC:
205 if 'SIM' in options.trimmedStep:
207 if 'CFWRITER' in options.trimmedStep:
209 if 'DIGI' in options.trimmedStep:
211 if 'DIGI2RAW' in options.trimmedStep:
213 if (
not (options.eventcontent ==
None))
and 'SIM' in options.eventcontent:
215 if 'SIM' in options.datatier:
218 print 'We have determined that this is simulation (if not, rerun cmsDriver.py with --data)'
220 print 'We have determined that this is real data (if not, rerun cmsDriver.py with --mc)'
223 if options.profile
and options.prefix:
224 raise Exception(
"--profile and --prefix are incompatible")
226 profileOpts = options.profile.split(
':')
228 profilerType = profileOpts[0].
replace(
"=",
" ")
230 if profilerType ==
"pp":
231 options.profileTypeLabel =
"performance"
232 elif profilerType ==
"mp":
233 options.profileTypeLabel =
"memory"
234 elif profilerType.startswith(
"fp "):
235 options.profileTypeLabel = profilerType.replace(
"fp ",
"")
237 raise Exception(
"Not a valid profiler type %s. Alternatives are pp, mp, fp=<function>."%(profilerType))
239 options.prefix =
"igprof -t cmsRun -%s" % profilerType
static std::string join(char **cmd)