result_analysis¶
All functions creating results (e.g. efficiency, residuals, track density) from fitted tracks are listed here.
Methods¶
-
testbeam_analysis.result_analysis.
calculate_residuals
(input_tracks_file, input_alignment_file, n_pixels, pixel_size, output_residuals_file=None, dut_names=None, use_duts=None, max_chi2=None, nbins_per_pixel=None, npixels_per_bin=None, force_prealignment=False, use_fit_limits=True, cluster_size_selection=None, plot=True, gui=False, chunk_size=1000000)[source]¶ Takes the tracks and calculates residuals for selected DUTs in col, row direction.
Parameters: - input_tracks_file (string) – Filename of the input tracks file.
- input_alignment_file (string) – Filename of the input aligment file.
- n_pixels (iterable of tuples) – One tuple per DUT describing the number of pixels in column, row direction e.g. for 2 DUTs: n_pixels = [(80, 336), (80, 336)]
- pixel_size (iterable of tuples) – One tuple per DUT describing the pixel dimension in um in column, row direction e.g. for 2 DUTs: pixel_size = [(250, 50), (250, 50)]
- output_residuals_file (string) – Filename of the output residuals file. If None, the filename will be derived from the input hits file.
- dut_names (iterable) – Name of the DUTs. If None, DUT numbers will be used.
- use_duts (iterable) – The duts to calculate residuals for. If None all duts in the input_tracks_file are used
- max_chi2 (uint, iterable) – Use only not heavily scattered tracks to increase track pointing resolution (cut on chi2). Cut can be a number and is used then for all DUTS or a list with a chi 2 cut for each DUT. If None, no cut is applied.
- nbins_per_pixel (int) – Number of bins per pixel along the residual axis. Number is a positive integer or None to automatically set the binning.
- npixels_per_bin (int) – Number of pixels per bin along the position axis. Number is a positive integer or None to automatically set the binning.
- force_prealignment (bool) – Take the prealignment, although if a coarse alignment is availale.
- cluster_size_selection (uint) – Select which cluster sizes should be included for residual calculation. If None all cluster sizes are taken.
- plot (bool) – If True, create additional output plots.
- gui (bool) – If True, use GUI for plotting.
- chunk_size (int) – Chunk size of the data when reading from file.
-
testbeam_analysis.result_analysis.
calculate_efficiency
(input_tracks_file, input_alignment_file, bin_size, sensor_size, output_efficiency_file=None, pixel_size=None, n_pixels=None, minimum_track_density=1, max_distance=500, use_duts=None, max_chi2=None, force_prealignment=False, cut_distance=None, col_range=None, row_range=None, show_inefficient_events=False, plot=True, gui=False, chunk_size=1000000)[source]¶ Takes the tracks and calculates the hit efficiency and hit/track hit distance for selected DUTs.
Parameters: - input_tracks_file (string) – Filename of the input tracks file.
- input_alignment_file (string) – Filename of the input alignment file.
- bin_size (iterable) – Sizes of bins (i.e. (virtual) pixel size). Give one tuple (x, y) for every plane or list of tuples for different planes.
- sensor_size (Tuple or list of tuples) – Describes the sensor size for each DUT. If one tuple is given it is (size x, size y) If several tuples are given it is [(DUT0 size x, DUT0 size y), (DUT1 size x, DUT1 size y), ...]
- output_efficiency_file (string) – Filename of the output efficiency file. If None, the filename will be derived from the input hits file.
- minimum_track_density (int) – Minimum track density required to consider bin for efficiency calculation.
- use_duts (iterable) – Calculate the efficiency for selected DUTs. If None, all duts are selected.
- max_chi2 (uint) – Only use tracks with a chi2 <= max_chi2.
- force_prealignment (bool) – Take the prealignment, although if a coarse alignment is availale.
- cut_distance (int) – Use only distances (between DUT hit and track hit) smaller than cut_distance.
- max_distance (int) – Defines binnig of distance values.
- col_range (iterable) – Column value to calculate efficiency for (to neglect noisy edge pixels for efficiency calculation).
- row_range (iterable) – Row value to calculate efficiency for (to neglect noisy edge pixels for efficiency calculation).
- plot (bool) – If True, create additional output plots.
- chunk_size (int) – Chunk size of the data when reading from file.
- pixel_size (iterable) – tuple or list of col/row pixel dimension
- n_pixels (iterable) – tuple or list of amount of pixel in col/row dimension
- show_inefficient_events (bool) – Whether to log inefficient events
- gui (bool) – If True, use GUI for plotting.