28 basf2.conditions.override_globaltags()
29 basf2.conditions.append_globaltag(
'data_reprocessing_prompt_bucket7')
30 basf2.conditions.append_globaltag(
'data_reprocessing_prompt_rel4_patch')
33 main = basf2.create_path()
36 main.add_module(
'SeqRootInput')
37 main.add_module(
'Progress')
40 main.add_module(
'KLMUnpacker')
44 main.add_module(
'BKLMDigitAnalyzer',
45 outputRootName=
'bklmHitmap')
49 print(basf2.statistics)
56 allFiles = glob.glob(
'./bklmHitmap*root')
57 latestFile = max(allFiles, key=os.path.getctime)
58 bashCommand =
"root -b 'drawHitmap.cxx" +
'("' + latestFile +
'")' +
"'"
59 os.system(bashCommand)