13 <contact>software-tracking@belle2.org</contact>
14 <input>EvtGenSimNoBkg.root</input>
15 <output>SVDHoughTrackingValidation.root</output>
17 This module validates that the SVDHoughTracking
is capable of reconstructing tracks
in Y(4S) runs.
23from tracking.validation.run import TrackingValidationRun
26from tracking.path_utils import add_svd_hough_tracking
28VALIDATION_OUTPUT_FILE = 'SVDHoughTrackingValidation.root'
33class SVDHoughTrackingValidation(TrackingValidationRun):
35 Validation class for the four 4-SVD Layer tracking
40 generator_module = 'generic'
42 root_input_file =
'../EvtGenSimNoBkg.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
69 use_fit_information =
True
71 output_file_name = VALIDATION_OUTPUT_FILE
73 non_expert_parameters = []
78 create SVD validation class and
execute
80 basf2.set_random_seed(1337)
82 validation_run.configure_and_execute_from_commandline()
85if __name__ ==
'__main__':
86 logging.basicConfig(level=logging.INFO)
90 print(
"This validation deactivated and thus basf2 is not executed.\n"
91 "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....