Loading [MathJax]/extensions/tex2jax.js
ATLAS Offline Software
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Modules Pages
IBLCalibrationConfig.py
Go to the documentation of this file.
1 # Copyright (C) 2002-2024 CERN for the benefit of the ATLAS collaboration
2 import sys
3 
4 if __name__=="__main__":
5 
6  import argparse
7  parser = argparse.ArgumentParser(prog='python -m PixelCalibAlgs.IBLCalibrationConfig.',
8  description="""Calibration tool for IBL.\n\n
9  Example: python -m PixelCalibAlgs.IBLCalibrationConfig --folder "global/path/to/folder/" --thr "threshold_file" --totLowQ "totLowCharge_file"
10  --totHisDis "totHisDisConfig_file" [--runCal --skipPlots]""")
11 
12  parser.add_argument('--folder' , required=True, help="Directory path to the files")
13  parser.add_argument('--thr' , required=True, help="Format must be \"SCAN_SXXXXXXXXX\" - THRESHOLD_SCAN (0Preset_full)")
14  parser.add_argument('--totLowQ' , required=True, help="Format must be \"SCAN_SXXXXXXXXX\" - TOT_CALIB (0Preset_lowcharge) ")
15  parser.add_argument('--totHisDis' , required=True, help="Format must be \"SCAN_SXXXXXXXXX\" - TOT_CALIB (0Preset_lowcharge_HisDisConfig)")
16  parser.add_argument('--tag' , type=str, default="PixelChargeCalibration-DATA-RUN2-UPD4-28", help="Tag in order to read the DB")
17  parser.add_argument('--runCal' , action='store_true', help="Runs only the IBL Calibration layer")
18  parser.add_argument('--skipPlots' , action='store_true', help="Skips the plotting step - Slower the running time")
19 
20  args = parser.parse_args()
21 
22  try:
23  print("Running IBLCalibration layers..")
24  command = 'IBLCalibration directory_path=' + args.folder + ' THR=' + args.thr + ' TOT_HISDIS=' + args.totHisDis + ' TOT_LOWQ=' + args.totLowQ
25  print("Command: %s\n" % command)
26  import subprocess
27  stdout, stderr = subprocess.Popen(command, shell=True, stdout=subprocess.PIPE, stderr=subprocess.PIPE).communicate()
28  print("OUTPUT: \n%s" % (stdout.decode('ascii')))
29  print("ERRORS: %s" % ("NONE" if stderr.decode('ascii')=='' else "\n"+stderr.decode('ascii')))
30  if stderr:
31  exit(1)
32 
33  except OSError as e:
34  print("IBLCalibration.cxx execution CRASHED - Please check\n",e)
35  sys.exit(e.errno)
36 
37 
38 
39  # Use --runCal = True if you plan to run just the calibration
40  if args.runCal:
41  print("Jobs finished")
42  exit(0)
43 
44  print("Creating Reference file..")
45  # Downloads the last IOV
46  command = 'MakeReferenceFile tagName=%s' % (args.tag)
47  print("Command: %s\n" % command)
48  (subprocess.Popen(command, shell=True)).communicate()
49  print("Done\n")
50 
51  if args.skipPlots:
52  print("Jobs finished")
53  exit(0)
54 
55  from PixelCalibAlgs.CheckValues import CheckThresholdsIBL
56  CheckThresholdsIBL("ChargeCalib_ToTbin1_FrtEnd2_"+args.totHisDis+".TXT")
57 
58  print("Validation new vs. previous calibration.")
59  # Plots the old vs. new charge for all FE (includes IBL)
60  from PixelCalibAlgs.EvoMonitoring import setupRunEvo
61  setupRunEvo("ChargeCalib_ToTbin1_FrtEnd2_"+args.totHisDis+".TXT", args.tag+".log" )
62  print("Done\n")
63 
64 
65  print("Jobs finished")
66  exit(0)
67 
CheckValues.CheckThresholdsIBL
def CheckThresholdsIBL(_file)
Definition: CheckValues.py:248
EvoMonitoring.setupRunEvo
def setupRunEvo(path_newCalib, path_oldCalib)
Definition: EvoMonitoring.py:231
calibdata.exit
exit
Definition: calibdata.py:236
print
void print(char *figname, TCanvas *c1)
Definition: TRTCalib_StrawStatusPlots.cxx:25