Project
Loading...
Searching...
No Matches
TrackingInterface.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.
11
12#ifndef O2_ITS_TRACKINGINTERFACE
13#define O2_ITS_TRACKINGINTERFACE
14
16
18#include "ITStracking/Tracker.h"
26
27#include "GPUDataTypesIO.h"
28#include "GPUO2ExternalUser.h"
29#include "GPUChainITS.h"
30
31#include <oneapi/tbb/task_arena.h>
32
33namespace o2::its
34{
36{
37 public:
38 static constexpr int NLayers{7};
44
46 bool doStag,
47 int trgType,
48 const bool overrBeamEst)
49 : mIsMC{isMC},
50 mDoStaggering(doStag),
51 mUseTriggers{trgType},
52 mOverrideBeamEstimation{overrBeamEst} {}
53
56 {
57 if (v == nullptr) {
58 LOGP(error, "Mean Vertex Object is nullptr");
59 return;
60 } else {
61 LOGP(info, "Mean Vertex set with x: {} y: {}", v->getX(), v->getY());
62 }
63 mMeanVertex = v;
64 }
65 // Task callbacks
66 void initialise();
68 void printSummary() const;
69
71 virtual void finaliseCCDB(framework::ConcreteDataMatcher& matcher, void* obj);
72
73 // Custom
76
77 auto getTracker() const { return mTracker.get(); }
78 auto getVertexer() const { return mVertexer.get(); }
79
81
82 protected:
83 virtual void overrideParameters(std::vector<TrackingParameters>& t, std::vector<VertexingParameters>& v) {}
85 virtual void loadROF(gsl::span<const itsmft::ROFRecord>& trackROFspan,
86 gsl::span<const itsmft::CompClusterExt> clusters,
87 gsl::span<const unsigned char>::iterator& pattIt,
88 int layer,
90
91 private:
92 bool mIsMC = false;
93 bool mDoStaggering = false;
94 bool mRunVertexer = true;
95 bool mCosmicsProcessing = false;
96 int mUseTriggers = 0;
97 std::vector<o2::framework::InputSpec> mFilter;
99 bool mOverrideBeamEstimation = false;
100 const o2::itsmft::TopologyDictionary* mDict = nullptr;
101 std::unique_ptr<TrackerN> mTracker = nullptr;
102 std::unique_ptr<VertexerN> mVertexer = nullptr;
103 const o2::dataformats::MeanVertexObject* mMeanVertex{};
104 std::shared_ptr<BoundedMemoryResource> mMemoryPool;
105 std::shared_ptr<tbb::task_arena> mTaskArena;
106};
107
108} // namespace o2::its
109#endif // O2_ITS_TRACKINGINTERFACE
Definition of the ClusterTopology class.
Header of the General Run Parameters object.
Class to compute the primary vertex in ITS from tracklets.
A container to hold and manage MC truth information/labels.
VertexerTraits< NLayers > VertexerTraitsN
TrackerTraits< NLayers > TrackerTraitsN
TimeFrame< NLayers > TimeFrameN
void run(framework::ProcessingContext &pc)
void setMeanVertex(const o2::dataformats::MeanVertexObject *v)
void setTrackingMode(TrackingMode::Type mode=TrackingMode::Unset)
void setClusterDictionary(const o2::itsmft::TopologyDictionary *d)
virtual void requestTopologyDictionary(framework::ProcessingContext &pc)
virtual void updateTimeDependentParams(framework::ProcessingContext &pc)
virtual void loadROF(gsl::span< const itsmft::ROFRecord > &trackROFspan, gsl::span< const itsmft::CompClusterExt > clusters, gsl::span< const unsigned char >::iterator &pattIt, int layer, const dataformats::MCTruthContainer< MCCompLabel > *mcLabels)
virtual void finaliseCCDB(framework::ConcreteDataMatcher &matcher, void *obj)
ITSTrackingInterface(bool isMC, bool doStag, int trgType, const bool overrBeamEst)
void setTraitsFromProvider(VertexerTraitsN *, TrackerTraitsN *, TimeFrameN *)
virtual void overrideParameters(std::vector< TrackingParameters > &t, std::vector< VertexingParameters > &v)
GLenum mode
Definition glcorearb.h:266
const GLdouble * v
Definition glcorearb.h:832
GLenum GLuint GLint GLint layer
Definition glcorearb.h:1310
std::vector< Cluster > clusters