13 <contact>simon.kurz@desy.de</contact>
14 <input>EvtGenSimNoBkg.root</input>
15 <output>fullTrackingValidation_plusECL.root</output>
16 <description>This module validates the full track reconstruction including the ECL seeding.</description>
20from tracking.validation.run import TrackingValidationRun
25VALIDATION_OUTPUT_FILE = 'fullTrackingValidation_plusECL.root'
30class fullTrackingValidation_plusECL(TrackingValidationRun):
31 """Validate the full track-finding chain includung the ecl seeded ckf"""
35 generator_module =
'generic'
37 root_input_file =
'../EvtGenSimNoBkg.root'
41 """Do the standard tracking reconstruction chain"""
43 components = [
"SVD",
"CDC",
"ECL"]
47 tracking.add_tracking_reconstruction(path, components=components,
48 use_svd_to_cdc_ckf=
True, use_ecl_to_cdc_ckf=
True)
56 "UseReassignedHits":
True,
63 use_fit_information =
True
65 use_expert_folder =
False
71 output_file_name = VALIDATION_OUTPUT_FILE
73 non_expert_parameters = []
77 basf2.set_random_seed(1337)
79 validation_run.configure_and_execute_from_commandline()
82if __name__ ==
'__main__':
83 logging.basicConfig(level=logging.INFO)
88 print(
"This validation deactivated and thus basf2 is not executed.\n"
89 "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....
def add_prefilter_pretracking_reconstruction(path, components=None)