You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
// The main method is isSelected(o2::dataformats::GlobalTrackID, o2::globaltracking::RecoContainer&), which is a boolean
22
+
// that returns true only if all the checks are passed. First, based on the global track id, the track detector source is
23
+
// inquired(e.g. below for ITS and TPC tracks). The source-specific tracks is initialized in order to access the
24
+
// source-specific parameters than one wants to perform selections on.
25
+
// For each detector source, the inquiry should be done in such way that “false” should be returned if the checks are not passed,
26
+
// moving to the next detector source otherwise.
27
+
// (e.g below for TPC tracks, where the track selections used here: https://github.com/AliceO2Group/AliceO2/blob/dev/Detectors/GlobalTracking/src/MatchITSTPCQC.cxx#L318
28
+
// are reproduced;
29
+
// Moreover, an example of how this class should be used can be found here: https://github.com/AliceO2Group/AliceO2/blob/dev/Detectors/GlobalTracking/src/MatchITSTPCQC.cxx#L184).
0 commit comments