Project
Loading...
Searching...
No Matches
ROframe.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.
15
16#ifndef TRACKINGITSU_INCLUDE_ROFRAME_H_
17#define TRACKINGITSU_INCLUDE_ROFRAME_H_
18
19#include <array>
20#include <vector>
21#include <utility>
22#include <cassert>
23#include <gsl/gsl>
24
25#include "ITStracking/Cluster.h"
27
31
32namespace o2
33{
34namespace its
35{
36
38
39class ROframe final
40{
41 public:
42 ROframe(int ROframeId, int nLayers);
43 int getROFrameId() const;
44 const float3& getPrimaryVertex(const int) const;
45 int getPrimaryVerticesNum() const;
46 void addPrimaryVertex(const float, const float, const float);
47 void addPrimaryVertices(std::vector<Vertex> vertices);
48 void addPrimaryReconstructedVertex(const float, const float, const float);
49 void printPrimaryVertices() const;
50 int getTotalClusters() const;
51 bool empty() const;
52
53 const auto& getClusters() const { return mClusters; }
54 const std::vector<Cluster>& getClustersOnLayer(int layerId) const;
55 const std::vector<TrackingFrameInfo>& getTrackingFrameInfoOnLayer(int layerId) const;
56 const auto& getTrackingFrameInfo() const { return mTrackingFrameInfo; }
57
58 const TrackingFrameInfo& getClusterTrackingFrameInfo(int layerId, const Cluster& cl) const;
59 const MCCompLabel& getClusterFirstLabel(int layerId, const Cluster& cl) const;
60 const MCCompLabel& getClusterFirstLabel(int layerId, const int clId) const;
61 const gsl::span<const o2::MCCompLabel> getClusterLabels(int layerId, const int clId) const;
62 const gsl::span<const o2::MCCompLabel> getClusterLabels(int layerId, const Cluster& cl) const;
63 int getClusterExternalIndex(int layerId, const int clId) const;
64 std::vector<int> getTracksId(const int layerId, const std::vector<Cluster>& cl);
65
66 template <typename... T>
67 void addClusterToLayer(int layer, T&&... args);
68 template <typename... T>
69 void addTrackingFrameInfoToLayer(int layer, T&&... args);
71 void addClusterExternalIndexToLayer(int layer, const int idx);
72 bool hasMCinformation() const;
73
74 void clear();
75
76 private:
77 const int mROframeId;
78 const o2::dataformats::MCTruthContainer<MCCompLabel>* mMClabels = nullptr;
79 std::vector<float3> mPrimaryVertices;
80 std::vector<std::vector<Cluster>> mClusters;
81 std::vector<std::vector<TrackingFrameInfo>> mTrackingFrameInfo;
82 std::vector<std::vector<int>> mClusterExternalIndices;
83};
84
85inline int ROframe::getROFrameId() const { return mROframeId; }
86
87inline const float3& ROframe::getPrimaryVertex(const int vertexIndex) const { return mPrimaryVertices[vertexIndex]; }
88
89inline int ROframe::getPrimaryVerticesNum() const { return mPrimaryVertices.size(); }
90
91inline bool ROframe::empty() const { return getTotalClusters() == 0; }
92
93inline const std::vector<Cluster>& ROframe::getClustersOnLayer(int layerId) const
94{
95 return mClusters[layerId];
96}
97
98inline const std::vector<TrackingFrameInfo>& ROframe::getTrackingFrameInfoOnLayer(int layerId) const
99{
100 return mTrackingFrameInfo[layerId];
101}
102
103inline const TrackingFrameInfo& ROframe::getClusterTrackingFrameInfo(int layerId, const Cluster& cl) const
104{
105 return mTrackingFrameInfo[layerId][cl.clusterId];
106}
107
108inline const MCCompLabel& ROframe::getClusterFirstLabel(int layerId, const Cluster& cl) const
109{
110 return getClusterFirstLabel(layerId, cl.clusterId);
111}
112
113inline const MCCompLabel& ROframe::getClusterFirstLabel(int layerId, const int clId) const
114{
115 return *(mMClabels->getLabels(getClusterExternalIndex(layerId, clId)).begin());
116}
117
118inline const gsl::span<const o2::MCCompLabel> ROframe::getClusterLabels(int layerId, const int clId) const
119{
120 return mMClabels->getLabels(getClusterExternalIndex(layerId, clId));
121}
122
123inline const gsl::span<const o2::MCCompLabel> ROframe::getClusterLabels(int layerId, const Cluster& cl) const
124{
125 return getClusterLabels(layerId, cl.clusterId);
126}
127
128inline int ROframe::getClusterExternalIndex(int layerId, const int clId) const
129{
130 return mClusterExternalIndices[layerId][clId];
131}
132
133inline std::vector<int> ROframe::getTracksId(const int layerId, const std::vector<Cluster>& cl)
134{
135 std::vector<int> tracksId;
136 for (auto& cluster : cl) {
137 tracksId.push_back(getClusterFirstLabel(layerId, cluster).isNoise() ? -1 : getClusterFirstLabel(layerId, cluster).getTrackID());
138 }
139 return tracksId;
140}
141
142template <typename... T>
144{
145 mClusters[layer].emplace_back(std::forward<T>(values)...);
146}
147
148template <typename... T>
150{
151 mTrackingFrameInfo[layer].emplace_back(std::forward<T>(values)...);
152}
153
158
159inline void ROframe::addClusterExternalIndexToLayer(int layer, const int idx)
160{
161 mClusterExternalIndices[layer].push_back(idx);
162}
163
164inline void ROframe::clear()
165{
166 for (unsigned int iL = 0; iL < mClusters.size(); ++iL) {
167 mClusters[iL].clear();
168 mTrackingFrameInfo[iL].clear();
169 // mClusterLabels[iL].clear();
170 mClusterExternalIndices[iL].clear();
171 }
172 mPrimaryVertices.clear();
173 mMClabels = nullptr;
174}
175
176inline bool ROframe::hasMCinformation() const
177{
178 // for (const auto& vect : mClusterLabels) {
179 // if (!vect.empty()) {
180 // return true;
181 // }
182 // }
183 // return false;
184 return mMClabels;
185}
186
187} // namespace its
188} // namespace o2
189
190#endif /* TRACKINGITSU_INCLUDE_ROFRAME_H_ */
Definition of a container to keep Monte Carlo truth external to simulation objects.
TBranch * ptr
bool isNoise() const
Definition MCCompLabel.h:73
int getTrackID() const
A container to hold and manage MC truth information/labels.
int getPrimaryVerticesNum() const
Definition ROframe.h:89
void addTrackingFrameInfoToLayer(int layer, T &&... args)
Definition ROframe.h:149
bool hasMCinformation() const
Definition ROframe.h:176
int getClusterExternalIndex(int layerId, const int clId) const
Definition ROframe.h:128
const gsl::span< const o2::MCCompLabel > getClusterLabels(int layerId, const int clId) const
Definition ROframe.h:118
void addPrimaryReconstructedVertex(const float, const float, const float)
const TrackingFrameInfo & getClusterTrackingFrameInfo(int layerId, const Cluster &cl) const
Definition ROframe.h:103
const MCCompLabel & getClusterFirstLabel(int layerId, const Cluster &cl) const
Definition ROframe.h:108
const std::vector< TrackingFrameInfo > & getTrackingFrameInfoOnLayer(int layerId) const
Definition ROframe.h:98
int getTotalClusters() const
Definition ROframe.cxx:56
void addPrimaryVertex(const float, const float, const float)
Definition ROframe.cxx:33
void addClusterExternalIndexToLayer(int layer, const int idx)
Definition ROframe.h:159
void addClusterToLayer(int layer, T &&... args)
Definition ROframe.h:143
int getROFrameId() const
Definition ROframe.h:85
void addPrimaryVertices(std::vector< Vertex > vertices)
Definition ROframe.cxx:38
std::vector< int > getTracksId(const int layerId, const std::vector< Cluster > &cl)
Definition ROframe.h:133
const float3 & getPrimaryVertex(const int) const
Definition ROframe.h:87
void setMClabelsContainer(const dataformats::MCTruthContainer< MCCompLabel > *ptr)
Definition ROframe.h:154
const std::vector< Cluster > & getClustersOnLayer(int layerId) const
Definition ROframe.h:93
void printPrimaryVertices() const
Definition ROframe.cxx:45
const auto & getClusters() const
Definition ROframe.h:53
const auto & getTrackingFrameInfo() const
Definition ROframe.h:56
bool empty() const
Definition ROframe.h:91
GLenum GLsizei GLsizei GLint * values
Definition glcorearb.h:1576
GLenum GLuint GLint GLint layer
Definition glcorearb.h:1310
a couple of static helper functions to create timestamp values for CCDB queries or override obsolete ...