12 This script runs the tracking validation on cdst samples like done for the release validation.
13 See produceSample_releaseValidation.py (same folder)
for additional branches.
17from basf2 import set_random_seed
18from tracking.validation.run import TrackingValidationRun
24class Full(TrackingValidationRun):
26 Validate the full track-finding chain for the release validation
27 using the special samples (cdst
with additional branches)
32 generator_module = 'generic'
34 root_input_file =
'./validationSample.root'
41 recoTracksName =
'RecoTracks'
45 use_fit_information =
True
57 output_file_name =
'./FullTrackingValidation_validationSample.root'
62 validation_run =
Full()
63 validation_run.configure_and_execute_from_commandline()
66if __name__ ==
'__main__':
67 logging.basicConfig(level=logging.INFO)
None finder_module
Name of the finder module to be used - can be everything that is accepted by tracking....