35input_root_files =
'./' + release +
'/TV_reco_' + bkg +
'_' + roi +
'_' + vxdtf +
'_' + release +
'.root'
36root_file_name_TRK =
'./' + release +
'/TV_TRK_analysis_' + bkg +
'_' + roi +
'_' + vxdtf +
'_' + release +
'.root'
37root_file_name_V0 =
'./' + release +
'/TV_V0_analysis_' + bkg +
'_' + roi +
'_' + vxdtf +
'_' + release +
'.root'
39print(
'Tracking Validation will run over these files: ')
40print(input_root_files)
41print(
'simulation: ' + roi +
' ' + bkg)
42print(
'reconstruction ' + vxdtf)
45path = b2.create_path()
47root_input = b2.register_module(
'RootInput')
48root_input.param(
'inputFileNames', input_root_files)
49path.add_module(root_input)
51gearbox = b2.register_module(
'Gearbox')
52path.add_module(gearbox)
54geometry = b2.register_module(
'Geometry')
56path.add_module(geometry)
58create_plots_TRK = b2.register_module(
'TrackingPerformanceEvaluation')
59create_plots_TRK.param(
'outputFileName', root_file_name_TRK)
60create_plots_TRK.logging.log_level = b2.LogLevel.INFO
61path.add_module(create_plots_TRK)
63create_plots_V0 = b2.register_module(
'V0findingPerformanceEvaluation')
64create_plots_V0.param(
'outputFileName', root_file_name_V0)
65create_plots_V0.logging.log_level = b2.LogLevel.INFO
66path.add_module(create_plots_V0)
68path.add_module(
'Progress')