Project
Loading...
Searching...
No Matches
Tracking.h
Go to the documentation of this file.
1// Copyright 2019-2020 CERN and copyright holders of ALICE O2.
2// See https://alice-o2.web.cern.ch/copyright for details of the copyright holders.
3// All rights not expressly granted are reserved.
4//
5// This software is distributed under the terms of the GNU General Public
6// License v3 (GPL Version 3), copied verbatim in the file "COPYING".
7//
8// In applying this license CERN does not waive the privileges and immunities
9// granted to it by virtue of its status as an Intergovernmental Organization
10// or submit itself to any jurisdiction.
11
16
17#ifndef AliceO2_TPC_QC_TRACKING_H
18#define AliceO2_TPC_QC_TRACKING_H
19
20#include <vector>
21#include <memory>
22
23class TH1F;
24class TH2F;
25class TH1D;
26class TGraphAsymmErrors;
27
28//o2 includes
29#include "DataFormatsTPC/Defs.h"
30
31namespace o2
32{
33class MCCompLabel;
34namespace gpu
35{
36class GPUO2InterfaceQA;
37struct GPUO2InterfaceConfiguration;
38} // namespace gpu
39namespace tpc
40{
41class TrackTPC;
42struct ClusterNativeAccess;
43
44namespace qc
45{
46// Class for tracking QA (efficiency / resolution)
47// Some settings can be steered via --configKeyValues: (See GPUSettingsList.h for actual definitions). Relevant QA parameters are:
48// "GPU_QA.strict=[bool]" Strict QA mode: Only consider resolution of tracks where the fit ended within 5 cm of the reference, and remove outliers. (Default: true)
49// "GPU_QA.qpt=[float]" Set cut for Q/Pt. (Default: 10.0)
50// "GPU_QA.recThreshold=[float]" Compute the efficiency including impure tracks with fake contamination. (Default 0.9)
51// "GPU_QA.maxResX=[float]" Maxmimum X (~radius) for reconstructed track position to take into accound for resolution QA in cm (Default: no limit)
52// "GPU_QA.nativeFitResolutions=[bool]" Create resolution histograms in the native fit units (sin(phi), tan(lambda), Q/Pt) (Default: false)
53// "GPU_QA.filterCharge=[int]" Filter for positive (+1) or negative (-1) charge (Default: no filter)
54// "GPU_QA.filterPID=[int]" Filter for Particle Type (0 Electron, 1 Muon, 2 Pion, 3 Kaon, 4 Proton) (Default: no filter)
55
57{
58 public:
62
64 outputMergeable, // output mergeaable histogrems, which can be merged and then postprocessed
65 outputPostprocessed, // directly postprocess the histograms before merging
66 outputLayout // arrange postprocessed histograms in predefined layouts
67 };
68
69 // Initiaalize
70 // postprocessOnly = false: initialize to run the full QA via processTracks function.
71 // postprocessOnly = true : cannot process tracks but only postprocess mergeeablee histogrems in postprocess function, output type must be outputPostprocessed or outputLayout.
72 void initialize(outputModes outputMode, bool postprocessOnly = false);
73
74 void processTracks(const std::vector<o2::tpc::TrackTPC>* tracks, const std::vector<o2::MCCompLabel>* tracksMC, const o2::tpc::ClusterNativeAccess* clNative, TObjArray* out = nullptr);
75 int postprocess(std::vector<TH1F>& in1, std::vector<TH2F>& in2, std::vector<TH1D>& in3, std::vector<TGraphAsymmErrors>& in4, TObjArray& out); // Inputs are modified, thus must not be const
76
78 void resetHistograms();
79
81 void getHists(const std::vector<TH1F>*& h1, const std::vector<TH2F>*& h2, const std::vector<TH1D>*& h3, const std::vector<TGraphAsymmErrors>*& h4) const;
82
83 private:
84 std::unique_ptr<o2::gpu::GPUO2InterfaceConfiguration> mQAConfig;
85 std::unique_ptr<o2::gpu::GPUO2InterfaceQA> mQA;
86 outputModes mOutputMode;
87
88 ClassDefNV(Tracking, 1)
89};
90} // namespace qc
91} // namespace tpc
92} // namespace o2
93
94#endif
void getHists(const std::vector< TH1F > *&h1, const std::vector< TH2F > *&h2, const std::vector< TH1D > *&h3, const std::vector< TGraphAsymmErrors > *&h4) const
get histograms
Definition Tracking.cxx:89
void processTracks(const std::vector< o2::tpc::TrackTPC > *tracks, const std::vector< o2::MCCompLabel > *tracksMC, const o2::tpc::ClusterNativeAccess *clNative, TObjArray *out=nullptr)
Definition Tracking.cxx:76
void initialize(outputModes outputMode, bool postprocessOnly=false)
Definition Tracking.cxx:47
int postprocess(std::vector< TH1F > &in1, std::vector< TH2F > &in2, std::vector< TH1D > &in3, std::vector< TGraphAsymmErrors > &in4, TObjArray &out)
Definition Tracking.cxx:84
Tracking()
default constructor
void resetHistograms()
Reset all histograms.
Definition Tracking.cxx:70
a couple of static helper functions to create timestamp values for CCDB queries or override obsolete ...