4 if __name__==
"__main__":
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]""")
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")
20 args = parser.parse_args()
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)
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')))
34 print(
"IBLCalibration.cxx execution CRASHED - Please check\n",e)
41 print(
"Jobs finished")
44 print(
"Creating Reference file..")
46 command =
'MakeReferenceFile tagName=%s' % (args.tag)
47 print(
"Command: %s\n" % command)
48 (subprocess.Popen(command, shell=
True)).communicate()
52 print(
"Jobs finished")
55 from PixelCalibAlgs.CheckValues
import CheckThresholdsIBL
58 print(
"Validation new vs. previous calibration.")
60 from PixelCalibAlgs.EvoMonitoring
import setupRunEvo
61 setupRunEvo(
"ChargeCalib_ToTbin1_FrtEnd2_"+args.totHisDis+
".TXT", args.tag+
".log" )
65 print(
"Jobs finished")