Project
Loading...
Searching...
No Matches
VisualisationEvent.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
18
20
21#include <string>
22#include <limits>
23#include <algorithm>
24#include <map>
25
26using namespace std;
27using namespace rapidjson;
28
30{
31
32VisualisationEvent::GIDVisualisation VisualisationEvent::mVis = [] {
33 VisualisationEvent::GIDVisualisation res;
36 filter = static_cast<EVisualisationGroup>(static_cast<int>(filter) + 1)) {
46 }
53 }
60 }
67 }
72 }
78 }
83 }
86 }
89 }
92 }
93 }
94 return res;
95}();
96
99{
100 this->mEventNumber = vo.eventNumber;
101 this->mRunNumber = vo.runNumber;
102 this->mEnergy = vo.energy;
103 this->mMultiplicity = vo.multiplicity;
104 this->mCollidingSystem = vo.collidingSystem;
105 this->mCreationTime = vo.collisionTime;
106 this->mMinTimeOfTracks = numeric_limits<float>::max();
107 this->mMaxTimeOfTracks = numeric_limits<float>::min();
108 this->mClMask = 0;
109 this->mTrkMask = 0;
110 this->mTfCounter = 0;
111}
112
114{
115 for (auto calo : another.getCalorimetersSpan()) {
116 this->mCalo.push_back(calo);
117 }
118}
119
121{
122 for (auto it = source.mTracks.begin(); it != source.mTracks.end(); ++it) {
123 // if (it->getTime() < minTime) {
124 // continue;
125 // }
126 // if (it->getTime() > maxTime) {
127 // continue;
128 // }
129 if (VisualisationEvent::mVis.contains[it->getSource()][filter]) {
130 this->mTracks.push_back(*it);
131 }
132 }
133 for (auto it = source.mClusters.begin(); it != source.mClusters.end(); ++it) {
134 if (VisualisationEvent::mVis.contains[o2::dataformats::GlobalTrackID::HMP][filter]) { // only HMP can be standalone clusters
135 this->mClusters.push_back(*it);
136 }
137 }
138 for (auto it = source.mCalo.begin(); it != source.mCalo.end(); ++it) {
139 if (VisualisationEvent::mVis.contains[it->getSource()][filter]) {
140 this->mCalo.push_back(*it);
141 }
142 }
143}
144
146{
147 this->mRunNumber = 0;
148 this->mClMask = 0;
149 this->mTracks.clear();
150}
151
153{
154 this->mMinTimeOfTracks = std::numeric_limits<float>::max();
155 this->mMaxTimeOfTracks = std::numeric_limits<float>::min();
156 for (auto& v : this->mTracks) {
157 this->mMinTimeOfTracks = std::min(this->mMinTimeOfTracks, v.getTime());
158 this->mMaxTimeOfTracks = std::max(this->mMaxTimeOfTracks, v.getTime());
159 }
160}
161
162VisualisationEvent VisualisationEvent::limit(std::size_t maximum_number_of_items)
163{
165 result.mTracks.clear();
166 result.mCalo.clear();
167 result.mClusters.clear();
168 size_t count = 0;
169 do {
170 if (count < mTracks.size()) {
171 result.mTracks.push_back(mTracks[count]);
172 }
173 if (count < mClusters.size()) {
174 result.mClusters.push_back(mClusters[count]);
175 }
176 if (count < mCalo.size()) {
177 result.mCalo.push_back(mCalo[count]);
178 }
179 } while (count++ < maximum_number_of_items);
180 return result;
181}
182
183} // namespace o2
uint32_t res
Definition RawData.h:0
gsl::span< const VisualisationCalo > getCalorimetersSpan() const
VisualisationEvent limit(std::size_t maximum_number_of_items)
void appendAnotherEventCalo(const VisualisationEvent &another)
GLint GLsizei count
Definition glcorearb.h:399
GLuint64EXT * result
Definition glcorearb.h:5662
const GLdouble * v
Definition glcorearb.h:832
GLsizei GLsizei GLchar * source
Definition glcorearb.h:798
GLint GLint GLint GLint GLint GLint GLint GLbitfield GLenum filter
Definition glcorearb.h:1308
Defining DataPointCompositeObject explicitly as copiable.
bool contains[o2::dataformats::GlobalTrackID::NSources][o2::event_visualisation::EVisualisationGroup::NvisualisationGroups]