27basf2.conditions.override_globaltags()
28basf2.conditions.append_globaltag(
'data_reprocessing_prompt_bucket7')
29basf2.conditions.append_globaltag(
'data_reprocessing_prompt_rel4_patch')
32main = basf2.create_path()
35main.add_module(
'SeqRootInput')
36main.add_module(
'Progress')
39main.add_module(
'KLMUnpacker')
43main.add_module(
'BKLMDigitAnalyzer',
44 outputRootName=
'bklmHitmap')
48print(basf2.statistics)
55allFiles = glob.glob(
'./bklmHitmap*root')
56latestFile = max(allFiles, key=os.path.getctime)
57bashCommand =
"root -b 'drawHitmap.cxx" +
'("' + latestFile +
'")' +
"'"