13 <contact>software-tracking@belle2.org</contact>
14 <input>EvtGenSim.root</input>
15 <output>SVDHoughTrackingValidationBkg.root</output>
17 This module validates that the SVDHoughTracking
is capable of reconstructing tracks
in Y(4S) runs
with background.
23from tracking.validation.run import TrackingValidationRun
26from tracking.path_utils import add_svd_hough_tracking
28VALIDATION_OUTPUT_FILE = 'SVDHoughTrackingValidationBkg.root'
33class SVDHoughTrackingValidationBkg(TrackingValidationRun):
35 Validation class for the SVDHoughTracking
40 generator_module = 'generic'
42 root_input_file =
'../EvtGenSim.root'
48 """Add the VXDHoughTracking module and related modules to the basf2 path"""
49 tracking.add_hit_preparation_modules(path, components=[
"SVD"])
50 add_svd_hough_tracking(path)
54 'WhichParticles': [
'SVD'],
65 use_expert_folder =
False
67 output_file_name = VALIDATION_OUTPUT_FILE
69 non_expert_parameters = []
74 create SVD validation class and
execute
76 basf2.set_random_seed(1337)
78 validation_run.configure_and_execute_from_commandline()
81if __name__ ==
'__main__':
82 logging.basicConfig(level=logging.INFO)
86 print(
"This validation deactivated and thus basf2 is not executed.\n"
87 "If you want to run this validation, please set the 'ACTIVE' flag above to 'True'.\n"
None finder_module
Name of the finder module to be used - can be everything that is accepted by tracking....