CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
validateAlignments.py
Go to the documentation of this file.
1 #!/usr/bin/env python
2 #test execute: export CMSSW_BASE=/tmp/CMSSW && ./validateAlignments.py -c defaultCRAFTValidation.ini,test.ini -n -N test
3 import os
4 import sys
5 import optparse
6 import datetime
7 import shutil
8 import fnmatch
9 
10 import Alignment.OfflineValidation.TkAlAllInOneTool.configTemplates \
11  as configTemplates
12 import Alignment.OfflineValidation.TkAlAllInOneTool.crabWrapper as crabWrapper
13 from Alignment.OfflineValidation.TkAlAllInOneTool.TkAlExceptions \
14  import AllInOneError
15 from Alignment.OfflineValidation.TkAlAllInOneTool.helperFunctions \
16  import replaceByMap, getCommandOutput2, addIndex
17 from Alignment.OfflineValidation.TkAlAllInOneTool.betterConfigParser \
18  import BetterConfigParser
19 from Alignment.OfflineValidation.TkAlAllInOneTool.alignment import Alignment
20 
21 from Alignment.OfflineValidation.TkAlAllInOneTool.genericValidation \
22  import GenericValidation
23 from Alignment.OfflineValidation.TkAlAllInOneTool.geometryComparison \
24  import GeometryComparison
25 from Alignment.OfflineValidation.TkAlAllInOneTool.offlineValidation \
26  import OfflineValidation, OfflineValidationDQM
27 from Alignment.OfflineValidation.TkAlAllInOneTool.monteCarloValidation \
28  import MonteCarloValidation
29 from Alignment.OfflineValidation.TkAlAllInOneTool.trackSplittingValidation \
30  import TrackSplittingValidation
31 from Alignment.OfflineValidation.TkAlAllInOneTool.zMuMuValidation \
32  import ZMuMuValidation
33 from Alignment.OfflineValidation.TkAlAllInOneTool.preexistingValidation \
34  import *
35 import Alignment.OfflineValidation.TkAlAllInOneTool.globalDictionaries \
36  as globalDictionaries
37 
38 
39 ####################--- Classes ---############################
41 
42  # these count the jobs of different varieties that are being run
43  crabCount = 0
44  interactCount = 0
45  batchCount = 0
46  batchJobIds = []
47  jobCount = 0
48 
49  def __init__( self, validation, config, options ):
50  if validation[1] == "":
51  # intermediate syntax
52  valString = validation[0].split( "->" )[0]
53  alignments = validation[0].split( "->" )[1]
54  # force user to use the normal syntax
55  if "->" in validation[0]:
56  msg = ("Instead of using the intermediate syntax\n'"
57  +valString.strip()+"-> "+alignments.strip()
58  +":'\nyou have to use the now fully supported syntax \n'"
59  +valString.strip()+": "
60  +alignments.strip()+"'.")
61  raise AllInOneError(msg)
62  else:
63  valString = validation[0]
64  alignments = validation[1]
65  valString = valString.split()
66  self.__valType = valString[0]
67  self.__valName = valString[1]
68  self.__commandLineOptions = options
69  self.__config = config
70  self.__preexisting = ("preexisting" in self.__valType)
71  if self.__valType[0] == "*":
72  self.__valType = self.__valType[1:]
73  self.__preexisting = True
74 
75  # workaround for intermediate parallel version
76  if self.__valType == "offlineParallel":
77  print ("offlineParallel and offline are now the same. To run an offline parallel validation,\n"
78  "just set parallelJobs to something > 1. There is no reason to call it offlineParallel anymore.")
79  self.__valType = "offline"
80  section = self.__valType + ":" + self.__valName
81  if not self.__config.has_section( section ):
82  raise AllInOneError, ("Validation '%s' of type '%s' is requested in"
83  " '[validation]' section, but is not defined."
84  "\nYou have to add a '[%s]' section."
85  %( self.__valName, self.__valType, section ))
86  self.validation = self.__getValidation( self.__valType, self.__valName,
87  alignments, self.__config,
88  options )
89 
90  def __getValidation( self, valType, name, alignments, config, options ):
91  if valType == "compare":
92  alignmentsList = alignments.split( "," )
93  firstAlignList = alignmentsList[0].split()
94  firstAlignName = firstAlignList[0].strip()
95  if firstAlignName == "IDEAL":
96  raise AllInOneError, ("'IDEAL' has to be the second (reference)"
97  " alignment in 'compare <val_name>: "
98  "<alignment> <reference>'.")
99  if len( firstAlignList ) > 1:
100  firstRun = firstAlignList[1]
101  else:
102  firstRun = "1"
103  firstAlign = Alignment( firstAlignName, self.__config, firstRun )
104  firstAlignName = firstAlign.name
105  secondAlignList = alignmentsList[1].split()
106  secondAlignName = secondAlignList[0].strip()
107  if len( secondAlignList ) > 1:
108  secondRun = secondAlignList[1]
109  else:
110  secondRun = "1"
111  if secondAlignName == "IDEAL":
112  secondAlign = secondAlignName
113  else:
114  secondAlign = Alignment( secondAlignName, self.__config,
115  secondRun )
116  secondAlignName = secondAlign.name
117 
118  validation = GeometryComparison( name, firstAlign, secondAlign,
119  self.__config,
120  self.__commandLineOptions.getImages)
121  elif valType == "offline":
122  validation = OfflineValidation( name,
123  Alignment( alignments.strip(), self.__config ), self.__config )
124  elif valType == "preexistingoffline":
125  validation = PreexistingOfflineValidation(name, self.__config)
126  elif valType == "offlineDQM":
127  validation = OfflineValidationDQM( name,
128  Alignment( alignments.strip(), self.__config ), self.__config )
129  elif valType == "mcValidate":
130  validation = MonteCarloValidation( name,
131  Alignment( alignments.strip(), self.__config ), self.__config )
132  elif valType == "preexistingmcValidate":
133  validation = PreexistingMonteCarloValidation(name, self.__config)
134  elif valType == "split":
135  validation = TrackSplittingValidation( name,
136  Alignment( alignments.strip(), self.__config ), self.__config )
137  elif valType == "preexistingsplit":
138  validation = PreexistingTrackSplittingValidation(name, self.__config)
139  elif valType == "zmumu":
140  validation = ZMuMuValidation( name,
141  Alignment( alignments.strip(), self.__config ), self.__config )
142  else:
143  raise AllInOneError, "Unknown validation mode '%s'"%valType
144  return validation
145 
146  def __createJob( self, jobMode, outpath ):
147  """This private method creates the needed files for the validation job.
148  """
149  self.validation.createConfiguration( outpath )
150  if self.__preexisting:
151  return
152  self.__scripts = sum([addIndex(script, self.validation.NJobs) for script in self.validation.createScript( outpath )], [])
153  if jobMode.split( ',' )[0] == "crab":
154  self.validation.createCrabCfg( outpath )
155  return None
156 
157  def createJob(self):
158  """This is the method called to create the job files."""
159  self.__createJob( self.validation.jobmode,
160  os.path.abspath( self.__commandLineOptions.Name) )
161 
162  def runJob( self ):
163  if self.__preexisting:
164  log = "> " + self.validation.name + " is already validated."
165  print log
166  return log
167 
168  general = self.__config.getGeneral()
169  log = ""
170  for script in self.__scripts:
171  name = os.path.splitext( os.path.basename( script) )[0]
172  ValidationJob.jobCount += 1
173  if self.__commandLineOptions.dryRun:
174  print "%s would run: %s"%( name, os.path.basename( script) )
175  continue
176  log = "> Validating "+name
177  print "> Validating "+name
178  if self.validation.jobmode == "interactive":
179  log += getCommandOutput2( script )
180  ValidationJob.interactCount += 1
181  elif self.validation.jobmode.split(",")[0] == "lxBatch":
182  repMap = {
183  "commands": self.validation.jobmode.split(",")[1],
184  "logDir": general["logdir"],
185  "jobName": name,
186  "script": script,
187  "bsub": "/afs/cern.ch/cms/caf/scripts/cmsbsub"
188  }
189  bsubOut=getCommandOutput2("%(bsub)s %(commands)s "
190  "-J %(jobName)s "
191  "-o %(logDir)s/%(jobName)s.stdout "
192  "-e %(logDir)s/%(jobName)s.stderr "
193  "%(script)s"%repMap)
194  #Attention: here it is assumed that bsub returns a string
195  #containing a job id like <123456789>
196  ValidationJob.batchJobIds.append(bsubOut.split("<")[1].split(">")[0])
197  log+=bsubOut
198  ValidationJob.batchCount += 1
199  elif self.validation.jobmode.split( "," )[0] == "crab":
200  os.chdir( general["logdir"] )
201  crabName = "crab." + os.path.basename( script )[:-3]
202  theCrab = crabWrapper.CrabWrapper()
203  options = { "-create": "",
204  "-cfg": crabName + ".cfg",
205  "-submit": "" }
206  try:
207  theCrab.run( options )
208  except AllInOneError, e:
209  print "crab:", str(e).split("\n")[0]
210  exit(1)
211  ValidationJob.crabCount += 1
212 
213  else:
214  raise AllInOneError, ("Unknown 'jobmode'!\n"
215  "Please change this parameter either in "
216  "the [general] or in the ["
217  + self.__valType + ":" + self.__valName
218  + "] section to one of the following "
219  "values:\n"
220  "\tinteractive\n\tlxBatch, -q <queue>\n"
221  "\tcrab, -q <queue>")
222 
223  return log
224 
225  def getValidation( self ):
226  return self.validation
227 
228 
229 ####################--- Functions ---############################
230 def createOfflineParJobsMergeScript(offlineValidationList, outFilePath):
231  repMap = offlineValidationList[0].getRepMap() # bit ugly since some special features are filled
232 
233  theFile = open( outFilePath, "w" )
234  theFile.write( replaceByMap( configTemplates.mergeOfflineParJobsTemplate ,repMap ) )
235  theFile.close()
236 
237 def createExtendedValidationScript(offlineValidationList, outFilePath, resultPlotFile):
238  repMap = offlineValidationList[0].getRepMap() # bit ugly since some special features are filled
239  repMap[ "CMSSW_BASE" ] = os.environ['CMSSW_BASE']
240  repMap[ "resultPlotFile" ] = resultPlotFile
241  repMap[ "extendedInstantiation" ] = "" #give it a "" at first in order to get the initialisation back
242 
243  for validation in offlineValidationList:
244  repMap[ "extendedInstantiation" ] = validation.appendToExtendedValidation( repMap[ "extendedInstantiation" ] )
245 
246  theFile = open( outFilePath, "w" )
247  # theFile.write( replaceByMap( configTemplates.extendedValidationTemplate ,repMap ) )
248  theFile.write( replaceByMap( configTemplates.extendedValidationTemplate ,repMap ) )
249  theFile.close()
250 
251 def createTrackSplitPlotScript(trackSplittingValidationList, outFilePath):
252  repMap = trackSplittingValidationList[0].getRepMap() # bit ugly since some special features are filled
253  repMap[ "CMSSW_BASE" ] = os.environ['CMSSW_BASE']
254  repMap[ "trackSplitPlotInstantiation" ] = "" #give it a "" at first in order to get the initialisation back
255 
256  for validation in trackSplittingValidationList:
257  repMap[ "trackSplitPlotInstantiation" ] = validation.appendToExtendedValidation( repMap[ "trackSplitPlotInstantiation" ] )
258 
259  theFile = open( outFilePath, "w" )
260  # theFile.write( replaceByMap( configTemplates.trackSplitPlotTemplate ,repMap ) )
261  theFile.write( replaceByMap( configTemplates.trackSplitPlotTemplate ,repMap ) )
262  theFile.close()
263 
264 def createMergeScript( path, validations ):
265  if(len(validations) == 0):
266  raise AllInOneError("Cowardly refusing to merge nothing!")
267 
268  repMap = validations[0].getRepMap() #FIXME - not nice this way
269  repMap.update({
270  "DownloadData":"",
271  "CompareAlignments":"",
272  "RunExtendedOfflineValidation":"",
273  "RunTrackSplitPlot":"",
274  "CMSSW_BASE": os.environ["CMSSW_BASE"],
275  "SCRAM_ARCH": os.environ["SCRAM_ARCH"],
276  "CMSSW_RELEASE_BASE": os.environ["CMSSW_RELEASE_BASE"],
277  })
278 
279  comparisonLists = {} # directory of lists containing the validations that are comparable
280  for validation in validations:
281  for referenceName in validation.filesToCompare:
282  validationName = "%s.%s"%(validation.__class__.__name__, referenceName)
283  validationName = validationName.split(".%s"%GenericValidation.defaultReferenceName )[0]
284  validationName = validationName.split("Preexisting")[-1]
285  if validationName in comparisonLists:
286  comparisonLists[ validationName ].append( validation )
287  else:
288  comparisonLists[ validationName ] = [ validation ]
289 
290  # introduced to merge individual validation outputs separately
291  # -> avoids problems with merge script
292  repMap["haddLoop"] = "mergeRetCode=0\n"
293  repMap["rmUnmerged"] = ("if [[ mergeRetCode -eq 0 ]]; then\n"
294  " echo -e \\n\"Merging succeeded, removing original files.\"\n")
295  repMap["copyMergeScripts"] = ""
296  repMap["mergeParallelFilePrefixes"] = ""
297 
298  anythingToMerge = []
299  for validationType in comparisonLists:
300  for validation in comparisonLists[validationType]:
301  if isinstance(validation, PreexistingValidation) or validation.NJobs == 1:
302  continue
303  if validationType not in anythingToMerge:
304  anythingToMerge += [validationType]
305  repMap["haddLoop"] += '\n\n\n\necho -e "\n\nMerging results from %s jobs"\n\n' % validationType
306  repMap["haddLoop"] = validation.appendToMerge(repMap["haddLoop"])
307  repMap["haddLoop"] += "tmpMergeRetCode=${?}\n"
308  repMap["haddLoop"] += ("if [[ tmpMergeRetCode -eq 0 ]]; then "
309  "cmsStage -f "
310  +validation.getRepMap()["finalOutputFile"]
311  +" "
312  +validation.getRepMap()["finalResultFile"]
313  +"; fi\n")
314  repMap["haddLoop"] += ("if [[ ${tmpMergeRetCode} -gt ${mergeRetCode} ]]; then "
315  "mergeRetCode=${tmpMergeRetCode}; fi\n")
316  for f in validation.getRepMap()["outputFiles"]:
317  longName = os.path.join("/store/caf/user/$USER/",
318  validation.getRepMap()["eosdir"], f)
319  repMap["rmUnmerged"] += " cmsRm "+longName+"\n"
320  repMap["rmUnmerged"] += ("else\n"
321  " echo -e \\n\"WARNING: Merging failed, unmerged"
322  " files won't be deleted.\\n"
323  "(Ignore this warning if merging was done earlier)\"\n"
324  "fi\n")
325 
326  if "OfflineValidation" in anythingToMerge:
327  repMap["mergeOfflineParJobsScriptPath"] = os.path.join(path, "TkAlOfflineJobsMerge.C")
328  createOfflineParJobsMergeScript( comparisonLists["OfflineValidation"],
329  repMap["mergeOfflineParJobsScriptPath"] )
330  repMap["copyMergeScripts"] += ("cp .oO[CMSSW_BASE]Oo./src/Alignment/OfflineValidation/scripts/merge_TrackerOfflineValidation.C .\n"
331  "rfcp %s .\n" % repMap["mergeOfflineParJobsScriptPath"])
332 
333  if anythingToMerge:
334  # DownloadData is the section which merges output files from parallel jobs
335  # it uses the file TkAlOfflineJobsMerge.C
336  repMap["DownloadData"] += replaceByMap( configTemplates.mergeParallelResults, repMap )
337  else:
338  repMap["DownloadData"] = ""
339 
340 
341  if "OfflineValidation" in comparisonLists:
342  repMap["extendedValScriptPath"] = os.path.join(path, "TkAlExtendedOfflineValidation.C")
343  createExtendedValidationScript(comparisonLists["OfflineValidation"],
344  repMap["extendedValScriptPath"],
345  "OfflineValidation")
346  repMap["RunExtendedOfflineValidation"] = \
347  replaceByMap(configTemplates.extendedValidationExecution, repMap)
348 
349  if "TrackSplittingValidation" in comparisonLists:
350  repMap["trackSplitPlotScriptPath"] = \
351  os.path.join(path, "TkAlTrackSplitPlot.C")
352  createTrackSplitPlotScript(comparisonLists["TrackSplittingValidation"],
353  repMap["trackSplitPlotScriptPath"] )
354  repMap["RunTrackSplitPlot"] = \
355  replaceByMap(configTemplates.trackSplitPlotExecution, repMap)
356 
357  repMap["CompareAlignments"] = "#run comparisons"
358  for validationId in comparisonLists:
359  compareStrings = [ val.getCompareStrings(validationId) for val in comparisonLists[validationId] ]
360  compareStringsPlain = [ val.getCompareStrings(validationId, plain=True) for val in comparisonLists[validationId] ]
361 
362  repMap.update({"validationId": validationId,
363  "compareStrings": " , ".join(compareStrings),
364  "compareStringsPlain": " ".join(compareStringsPlain) })
365 
366  repMap["CompareAlignments"] += \
367  replaceByMap(configTemplates.compareAlignmentsExecution, repMap)
368 
369  filePath = os.path.join(path, "TkAlMerge.sh")
370  theFile = open( filePath, "w" )
371  theFile.write( replaceByMap( configTemplates.mergeTemplate, repMap ) )
372  theFile.close()
373  os.chmod(filePath,0755)
374 
375  return filePath
376 
377 def loadTemplates( config ):
378  if config.has_section("alternateTemplates"):
379  for templateName in config.options("alternateTemplates"):
380  if templateName == "AutoAlternates":
381  continue
382  newTemplateName = config.get("alternateTemplates", templateName )
383  #print "replacing default %s template by %s"%( templateName, newTemplateName)
384  configTemplates.alternateTemplate(templateName, newTemplateName)
385 
386 
387 ####################--- Main ---############################
388 def main(argv = None):
389  if argv == None:
390  argv = sys.argv[1:]
391  optParser = optparse.OptionParser()
392  optParser.description = """All-in-one Alignment Validation.
393 This will run various validation procedures either on batch queues or interactively.
394 If no name is given (-N parameter) a name containing time and date is created automatically.
395 To merge the outcome of all validation procedures run TkAlMerge.sh in your validation's directory.
396 """
397  optParser.add_option("-n", "--dryRun", dest="dryRun", action="store_true", default=False,
398  help="create all scripts and cfg File but do not start jobs (default=False)")
399  optParser.add_option( "--getImages", dest="getImages", action="store_true", default=True,
400  help="get all Images created during the process (default= True)")
401  defaultConfig = "TkAlConfig.ini"
402  optParser.add_option("-c", "--config", dest="config", default = defaultConfig,
403  help="configuration to use (default TkAlConfig.ini) this can be a comma-seperated list of all .ini file you want to merge", metavar="CONFIG")
404  optParser.add_option("-N", "--Name", dest="Name",
405  help="Name of this validation (default: alignmentValidation_DATE_TIME)", metavar="NAME")
406  optParser.add_option("-r", "--restrictTo", dest="restrictTo",
407  help="restrict validations to given modes (comma seperated) (default: no restriction)", metavar="RESTRICTTO")
408  optParser.add_option("-s", "--status", dest="crabStatus", action="store_true", default = False,
409  help="get the status of the crab jobs", metavar="STATUS")
410  optParser.add_option("-d", "--debug", dest="debugMode", action="store_true",
411  default = False,
412  help="run the tool to get full traceback of errors",
413  metavar="DEBUG")
414  optParser.add_option("-m", "--autoMerge", dest="autoMerge", action="store_true", default = False,
415  help="submit TkAlMerge.sh to run automatically when all jobs have finished (default=False)."
416  " Works only for batch jobs")
417 
418  (options, args) = optParser.parse_args(argv)
419 
420  if not options.restrictTo == None:
421  options.restrictTo = options.restrictTo.split(",")
422 
423  options.config = [ os.path.abspath( iniFile ) for iniFile in \
424  options.config.split( "," ) ]
425  config = BetterConfigParser()
426  outputIniFileSet = set( config.read( options.config ) )
427  failedIniFiles = [ iniFile for iniFile in options.config if iniFile not in outputIniFileSet ]
428 
429  # Check for missing ini file
430  if options.config == [ os.path.abspath( defaultConfig ) ]:
431  if ( not options.crabStatus ) and \
432  ( not os.path.exists( defaultConfig ) ):
433  raise AllInOneError, ( "Default 'ini' file '%s' not found!\n"
434  "You can specify another name with the "
435  "command line option '-c'/'--config'."
436  %( defaultConfig ))
437  else:
438  for iniFile in failedIniFiles:
439  if not os.path.exists( iniFile ):
440  raise AllInOneError, ( "'%s' does not exist. Please check for "
441  "typos in the filename passed to the "
442  "'-c'/'--config' option!"
443  %( iniFile ) )
444  else:
445  raise AllInOneError, ( "'%s' does exist, but parsing of the "
446  "content failed!" ) % iniFile
447 
448  # get the job name
449  if options.Name == None:
450  if not options.crabStatus:
451  options.Name = "alignmentValidation_%s"%(datetime.datetime.now().strftime("%y%m%d_%H%M%S"))
452  else:
453  existingValDirs = fnmatch.filter( os.walk( '.' ).next()[1],
454  "alignmentValidation_*" )
455  if len( existingValDirs ) > 0:
456  options.Name = existingValDirs[-1]
457  else:
458  print "Cannot guess last working directory!"
459  print ( "Please use the parameter '-N' or '--Name' to specify "
460  "the task for which you want a status report." )
461  return 1
462 
463  # set output path
464  outPath = os.path.abspath( options.Name )
465 
466  # Check status of submitted jobs and return
467  if options.crabStatus:
468  os.chdir( outPath )
469  crabLogDirs = fnmatch.filter( os.walk('.').next()[1], "crab.*" )
470  if len( crabLogDirs ) == 0:
471  print "Found no crab tasks for job name '%s'"%( options.Name )
472  return 1
473  theCrab = crabWrapper.CrabWrapper()
474  for crabLogDir in crabLogDirs:
475  print
476  print "*" + "=" * 78 + "*"
477  print ( "| Status report and output retrieval for:"
478  + " " * (77 - len( "Status report and output retrieval for:" ) )
479  + "|" )
480  taskName = crabLogDir.replace( "crab.", "" )
481  print "| " + taskName + " " * (77 - len( taskName ) ) + "|"
482  print "*" + "=" * 78 + "*"
483  print
484  crabOptions = { "-getoutput":"",
485  "-c": crabLogDir }
486  try:
487  theCrab.run( crabOptions )
488  except AllInOneError, e:
489  print "crab: No output retrieved for this task."
490  crabOptions = { "-status": "",
491  "-c": crabLogDir }
492  theCrab.run( crabOptions )
493  return
494 
495  general = config.getGeneral()
496  config.set("internals","workdir",os.path.join(general["workdir"],options.Name) )
497  config.set("general","datadir",os.path.join(general["datadir"],options.Name) )
498  config.set("general","logdir",os.path.join(general["logdir"],options.Name) )
499  config.set("general","eosdir",os.path.join("AlignmentValidation", general["eosdir"], options.Name) )
500 
501  if not os.path.exists( outPath ):
502  os.makedirs( outPath )
503  elif not os.path.isdir( outPath ):
504  raise AllInOneError,"the file %s is in the way rename the Job or move it away"%outPath
505 
506  # replace default templates by the ones specified in the "alternateTemplates" section
507  loadTemplates( config )
508 
509  #save backup configuration file
510  backupConfigFile = open( os.path.join( outPath, "usedConfiguration.ini" ) , "w" )
511  config.write( backupConfigFile )
512 
513  validations = []
514  for validation in config.items("validation"):
515  alignmentList = [validation[1]]
516  validationsToAdd = [(validation[0],alignment) \
517  for alignment in alignmentList]
518  validations.extend(validationsToAdd)
519  jobs = [ ValidationJob( validation, config, options) \
520  for validation in validations ]
521  map( lambda job: job.createJob(), jobs )
522  validations = [ job.getValidation() for job in jobs ]
523 
524  createMergeScript(outPath, validations)
525 
526  print
527  map( lambda job: job.runJob(), jobs )
528 
529  if options.autoMerge:
530  # if everything is done as batch job, also submit TkAlMerge.sh to be run
531  # after the jobs have finished
532  if ValidationJob.jobCount == ValidationJob.batchCount and config.getGeneral()["jobmode"].split(",")[0] == "lxBatch":
533  print "> Automatically merging jobs when they have ended"
534  repMap = {
535  "commands": config.getGeneral()["jobmode"].split(",")[1],
536  "jobName": "TkAlMerge",
537  "logDir": config.getGeneral()["logdir"],
538  "script": "TkAlMerge.sh",
539  "bsub": "/afs/cern.ch/cms/caf/scripts/cmsbsub",
540  "conditions": '"' + " && ".join(["ended(" + jobId + ")" for jobId in ValidationJob.batchJobIds]) + '"'
541  }
542  getCommandOutput2("%(bsub)s %(commands)s "
543  "-o %(logDir)s/%(jobName)s.stdout "
544  "-e %(logDir)s/%(jobName)s.stderr "
545  "-w %(conditions)s "
546  "%(logDir)s/%(script)s"%repMap)
547 
548 if __name__ == "__main__":
549  # main(["-n","-N","test","-c","defaultCRAFTValidation.ini,latestObjects.ini","--getImages"])
550  if "-d" in sys.argv[1:] or "--debug" in sys.argv[1:]:
551  main()
552  else:
553  try:
554  main()
555  except AllInOneError, e:
556  print "\nAll-In-One Tool:", str(e)
557  exit(1)
— Classes —############################
def main
— Main —############################
def alternateTemplate
### Alternate Templates ###
static std::string join(char **cmd)
Definition: RemoteFile.cc:18
def replaceByMap
— Helpers —############################
Definition: main.py:1
if(conf.exists("allCellsPositionCalc"))
double split
Definition: MVATrainer.cc:139