File tree Expand file tree Collapse file tree
Detectors/ITSMFT/ITS/tracking Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -104,7 +104,7 @@ class TimeFrameGPU : public TimeFrame<NLayers>
104104
105105 // / interface
106106 virtual bool isGPU () const noexcept final { return true ; }
107- virtual const char * getName () const noexcept { return " GPU" ; }
107+ virtual const char * getName () const noexcept final { return " GPU" ; }
108108 IndexTableUtilsN* getDeviceIndexTableUtils () { return mIndexTableUtilsDevice ; }
109109 const auto getDeviceROFOverlapTableView () { return mDeviceROFOverlapTableView ; }
110110 const auto getDeviceROFVertexLookupTableView () { return mDeviceROFVertexLookupTableView ; }
Original file line number Diff line number Diff line change @@ -281,7 +281,7 @@ struct TimeFrame {
281281
282282 // interface
283283 virtual bool isGPU () const noexcept { return false ; }
284- virtual const char * getName () const noexcept { return " CPU" ; }
284+ virtual const char * getName () const noexcept final { return " CPU" ; }
285285
286286 protected:
287287 void prepareClusters (const TrackingParameters& trkParam, const int maxLayers = NLayers);
You can’t perform that action at this time.
0 commit comments