File tree Expand file tree Collapse file tree 2 files changed +10
-12
lines changed
Detectors/ITSMFT/ITS/tracking/GPU Expand file tree Collapse file tree 2 files changed +10
-12
lines changed Original file line number Diff line number Diff line change 1616#include " ITStracking/TrackerTraits.h"
1717#include " ITStrackingGPU/TimeFrameGPU.h"
1818
19- namespace o2
20- {
21- namespace its
19+ namespace o2 ::its
2220{
2321
2422template <int nLayers = 7 >
@@ -54,13 +52,6 @@ class TrackerTraitsGPU final : public TrackerTraits
5452 gpu::TimeFrameGPU<7 >* mTimeFrameGPU ;
5553};
5654
57- template <int nLayers>
58- inline void TrackerTraitsGPU<nLayers>::adoptTimeFrame(TimeFrame* tf)
59- {
60- mTimeFrameGPU = static_cast <gpu::TimeFrameGPU<nLayers>*>(tf);
61- mTimeFrame = static_cast <TimeFrame*>(tf);
62- }
63- } // namespace its
64- } // namespace o2
55+ } // namespace o2::its
6556
66- #endif
57+ #endif
Original file line number Diff line number Diff line change @@ -22,6 +22,13 @@ namespace o2::its
2222{
2323constexpr int UnusedIndex{-1 };
2424
25+ template <int nLayers>
26+ void TrackerTraitsGPU<nLayers>::adoptTimeFrame(TimeFrame* tf)
27+ {
28+ mTimeFrameGPU = static_cast <gpu::TimeFrameGPU<nLayers>*>(tf);
29+ mTimeFrame = static_cast <TimeFrame*>(tf);
30+ }
31+
2532template <int nLayers>
2633void TrackerTraitsGPU<nLayers>::initialiseTimeFrame(const int iteration)
2734{
You can’t perform that action at this time.
0 commit comments