@@ -53,7 +53,7 @@ struct TPCSlowSpaceChargeCorrection {
5353 ~TPCSlowSpaceChargeCorrection () = default ;
5454
5555 // / setting dummy corrections for GPU
56- GPUd () void getCorrections(const float gx, const float gy, const float gz, const int32_t sector, float & gdxC, float & gdyC, float & gdzC) const
56+ GPUdi () void getCorrections(const float gx, const float gy, const float gz, const int32_t sector, float & gdxC, float & gdyC, float & gdzC) const
5757 {
5858 gdxC = 0 ;
5959 gdyC = 0 ;
@@ -172,7 +172,7 @@ class TPCFastTransform : public FlatObject
172172 void setTimeStamp (int64_t v) { mTimeStamp = v; }
173173
174174 // / Gives a reference for external initialization of TPC corrections
175- GPUd () const TPCFastSpaceChargeCorrection& getCorrection () const { return mCorrection ; }
175+ GPUdi () const TPCFastSpaceChargeCorrection& getCorrection () const { return mCorrection ; }
176176
177177 // / Gives a reference for external initialization of TPC corrections
178178 TPCFastSpaceChargeCorrection& getCorrection () { return mCorrection ; }
@@ -230,37 +230,37 @@ class TPCFastTransform : public FlatObject
230230 // / _______________ Utilities _______________________________________________
231231
232232 // / TPC geometry information
233- GPUd () const TPCFastTransformGeo& getGeometry () const { return mCorrection .getGeometry (); }
233+ GPUdi () const TPCFastTransformGeo& getGeometry () const { return mCorrection .getGeometry (); }
234234
235235 // / Gives the time stamp of the current calibaration parameters
236- GPUd () int64_t getTimeStamp () const { return mTimeStamp ; }
236+ GPUdi () int64_t getTimeStamp () const { return mTimeStamp ; }
237237
238238 // / Return mVDrift in cm / time bin
239- GPUd () float getVDrift () const { return mVdrift ; }
239+ GPUdi () float getVDrift () const { return mVdrift ; }
240240
241241 // / Return T0 in time bin units
242- GPUd () float getT0 () const { return mT0 ; }
242+ GPUdi () float getT0 () const { return mT0 ; }
243243
244244 // / Return map lumi
245- GPUd () float getLumi () const { return mLumi ; }
245+ GPUdi () float getLumi () const { return mLumi ; }
246246
247- GPUd () float isLumiSet () const { return mLumi != DEFLUMI; }
247+ GPUdi () float isLumiSet () const { return mLumi != DEFLUMI; }
248248
249249 // / Return map lumi error
250- GPUd () float getLumiError () const { return mLumiError ; }
250+ GPUdi () float getLumiError () const { return mLumiError ; }
251251
252252 // / Return map lumi
253253 GPUd () float getIDC () const ;
254254
255- GPUd () bool isIDCSet () const { return mIDC != DEFIDC; }
255+ GPUdi () bool isIDCSet () const { return mIDC != DEFIDC; }
256256
257257 // / Return map lumi error
258- GPUd () float getIDCError () const { return mIDCError ; }
258+ GPUdi () float getIDCError () const { return mIDCError ; }
259259
260- GPUd () float getCTP2IDCFallBackThreshold () const { return mCTP2IDCFallBackThreshold ; }
260+ GPUdi () float getCTP2IDCFallBackThreshold () const { return mCTP2IDCFallBackThreshold ; }
261261
262262 // / Return map user defined lumi scale factor
263- GPUd () float getLumiScaleFactor () const { return mLumiScaleFactor ; }
263+ GPUdi () float getLumiScaleFactor () const { return mLumiScaleFactor ; }
264264
265265 // / maximal possible drift time of the active area
266266 GPUd () float getMaxDriftTime (int32_t sector, int32_t row, float pad) const ;
0 commit comments