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.
22from tracking.validation.run import TrackingValidationRun
23from tracking.path_utils import add_hit_preparation_modules, add_svd_hough_tracking
27VALIDATION_OUTPUT_FILE = 'SVDHoughTrackingValidationBkg.root'
32class SVDHoughTrackingValidationBkg(TrackingValidationRun):
34 Validation class for the SVDHoughTracking
39 generator_module = 'generic'
41 root_input_file =
'../EvtGenSim.root'
47 """Add the VXDHoughTracking module and related modules to the basf2 path"""
48 add_hit_preparation_modules(path, components=[
"SVD"])
49 add_svd_hough_tracking(path)
53 'WhichParticles': [
'SVD'],
64 use_expert_folder =
False
66 output_file_name = VALIDATION_OUTPUT_FILE
68 non_expert_parameters = []
73 create SVD validation class and
execute
75 basf2.set_random_seed(1337)
77 validation_run.configure_and_execute_from_commandline()
80if __name__ ==
'__main__':
81 logging.basicConfig(level=logging.INFO)
85 print(
"This validation deactivated and thus basf2 is not executed.\n"
86 "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....