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
12
#include "
GlobalTrackingStudy/TrackMCStudyTypes.h
"
13
14
namespace
o2::trackstudy
15
{
16
17
RecTrack
TrackFamily::dummyRecTrack
;
18
19
// get longest number of clusters on consecutive layers
20
int
MCTrackInfo::getNITSClusCont
()
const
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)
39
int
MCTrackInfo::getNITSClusForAB
()
const
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
55
int
MCTrackInfo::getLowestITSLayer
()
const
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
68
int
MCTrackInfo::getHighestITSLayer
()
const
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
i
int32_t i
Definition
GPUCommonAlgorithm.h:431
TrackMCStudyTypes.h
o2::trackstudy
Definition
DumpTracks.h:23
o2::trackstudy::MCTrackInfo::getLowestITSLayer
int getLowestITSLayer() const
Definition
TrackMCStudyTypes.cxx:55
o2::trackstudy::MCTrackInfo::getNITSClusCont
int getNITSClusCont() const
Definition
TrackMCStudyTypes.cxx:20
o2::trackstudy::MCTrackInfo::getNITSClusForAB
int getNITSClusForAB() const
Definition
TrackMCStudyTypes.cxx:39
o2::trackstudy::MCTrackInfo::nITSCl
int8_t nITSCl
Definition
TrackMCStudyTypes.h:53
o2::trackstudy::MCTrackInfo::getHighestITSLayer
int getHighestITSLayer() const
Definition
TrackMCStudyTypes.cxx:68
o2::trackstudy::MCTrackInfo::pattITSCl
int8_t pattITSCl
Definition
TrackMCStudyTypes.h:54
o2::trackstudy::TrackFamily::dummyRecTrack
static RecTrack dummyRecTrack
Definition
TrackMCStudyTypes.h:136
Detectors
GlobalTrackingWorkflow
study
src
TrackMCStudyTypes.cxx
Generated on Fri Apr 4 2025 15:09:41 for Project by
1.9.8