13 <contact>software-tracking@belle2.org</contact>
14 <input>EvtGenSim.root</input>
15 <output>FullInvertedTrackingValidationBkg.root</output>
16 <description>This script validates the full track finding chain
in Y(4S) runs
with background.</description>
20from tracking.validation.run import TrackingValidationRun
21from tracking import add_tracking_reconstruction
24VALIDATION_OUTPUT_FILE = 'FullInvertedTrackingValidationBkg.root'
29class InvertedFullBkg(TrackingValidationRun):
30 """Validate the full track-finding chain, including background overlay"""
34 root_input_file =
'../EvtGenSim.root'
37 """Add the inverted track finding to the basf2 path"""
38 add_tracking_reconstruction(path, inverted_tracking=
True)
46 "UseReassignedHits":
True,
47 'UseOnlyBeforeTOP':
True,
54 use_fit_information =
True
56 use_expert_folder =
False
62 output_file_name = VALIDATION_OUTPUT_FILE
64 non_expert_parameters = []
68 basf2.set_random_seed(1337)
70 validation_run.configure_and_execute_from_commandline()
73if __name__ ==
'__main__':
74 logging.basicConfig(level=logging.INFO)
78 print(
"This validation deactivated and thus basf2 is not executed.\n"
79 "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....