Project
Loading...
Searching...
No Matches
TrackMCStudyTypes.cxx
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
13
14namespace o2::trackstudy
15{
16
18
19// get longest number of clusters on consecutive layers
21{
22 if (nITSCl < 2) {
23 return nITSCl;
24 }
25 int longest = 0, current = 0;
26 for (int i = 0; i < 7; i++) {
27 if (pattITSCl & (0x1 << i)) {
28 if (++current > longest) {
29 longest = current;
30 }
31 } else {
32 current = 0;
33 }
34 }
35 return longest;
36}
37
38// check how many clusters ITS-TPC afterburner could see (consecutively occupied layers starting from the last one)
40{
41 int ncl = 0;
42 if (nITSCl) {
43 for (int i = 6; i > 2; i--) {
44 if (pattITSCl & (0x1 << i)) {
45 ncl++;
46 } else {
47 break;
48 }
49 }
50 }
51 return ncl;
52}
53
54// lowest ITS layer with cluster
56{
57 if (nITSCl) {
58 for (int i = 0; i < 7; i++) {
59 if (pattITSCl & (0x1 << i)) {
60 return i;
61 }
62 }
63 }
64 return -1;
65}
66
67// highest ITS layer with cluster
69{
70 if (nITSCl) {
71 for (int i = 7; i--;) {
72 if (pattITSCl & (0x1 << i)) {
73 return i;
74 }
75 }
76 }
77 return -1;
78}
79
80} // namespace o2::trackstudy
int32_t i