@@ -262,7 +262,7 @@ bool TrackParametrizationWithError<value_T>::propagateToDCA(const o2::dataformat
262262// ______________________________________________________________
263263template <typename value_T>
264264TrackParametrizationWithError<value_T>::TrackParametrizationWithError(const dim3_t & xyz, const dim3_t & pxpypz,
265- const std ::array<value_t , kLabCovMatSize >& cv, int charge, bool sectorAlpha)
265+ const gpu::gpustd ::array<value_t , kLabCovMatSize >& cv, int charge, bool sectorAlpha)
266266{
267267 // construct track param and covariance from kinematics and lab errors
268268
@@ -454,7 +454,7 @@ bool TrackParametrizationWithError<value_T>::propagateTo(value_t xk, const dim3_
454454 step *= std::sqrt (1 .f + this ->getTgl () * this ->getTgl ());
455455 //
456456 // get the track x,y,z,px/p,py/p,pz/p,p,sinAlpha,cosAlpha in the Global System
457- std ::array<value_t , 9 > vecLab{0 .f };
457+ gpu::gpustd ::array<value_t , 9 > vecLab{0 .f };
458458 if (!this ->getPosDirGlo (vecLab)) {
459459 return false ;
460460 }
@@ -521,13 +521,13 @@ bool TrackParametrizationWithError<value_T>::propagateTo(value_t xk, const dim3_
521521 costet = b[2 ] / bb;
522522 sintet = bt / bb;
523523 }
524- std ::array<value_t , 7 > vect{costet * cosphi * vecLab[0 ] + costet * sinphi * vecLab[1 ] - sintet * vecLab[2 ],
525- -sinphi * vecLab[0 ] + cosphi * vecLab[1 ],
526- sintet * cosphi * vecLab[0 ] + sintet * sinphi * vecLab[1 ] + costet * vecLab[2 ],
527- costet * cosphi * vecLab[3 ] + costet * sinphi * vecLab[4 ] - sintet * vecLab[5 ],
528- -sinphi * vecLab[3 ] + cosphi * vecLab[4 ],
529- sintet * cosphi * vecLab[3 ] + sintet * sinphi * vecLab[4 ] + costet * vecLab[5 ],
530- vecLab[6 ]};
524+ gpu::gpustd ::array<value_t , 7 > vect{costet * cosphi * vecLab[0 ] + costet * sinphi * vecLab[1 ] - sintet * vecLab[2 ],
525+ -sinphi * vecLab[0 ] + cosphi * vecLab[1 ],
526+ sintet * cosphi * vecLab[0 ] + sintet * sinphi * vecLab[1 ] + costet * vecLab[2 ],
527+ costet * cosphi * vecLab[3 ] + costet * sinphi * vecLab[4 ] - sintet * vecLab[5 ],
528+ -sinphi * vecLab[3 ] + cosphi * vecLab[4 ],
529+ sintet * cosphi * vecLab[3 ] + sintet * sinphi * vecLab[4 ] + costet * vecLab[5 ],
530+ vecLab[6 ]};
531531
532532 // Do the helix step
533533 value_t sgn = this ->getSign ();
@@ -1004,7 +1004,7 @@ bool TrackParametrizationWithError<value_T>::correctForMaterial(value_t x2x0, va
10041004
10051005// ______________________________________________________________
10061006template <typename value_T>
1007- bool TrackParametrizationWithError<value_T>::getCovXYZPxPyPzGlo(std ::array<value_t , kLabCovMatSize >& cv) const
1007+ bool TrackParametrizationWithError<value_T>::getCovXYZPxPyPzGlo(gpu::gpustd ::array<value_t , kLabCovMatSize >& cv) const
10081008{
10091009 // ---------------------------------------------------------------------
10101010 // This function returns the global covariance matrix of the track params
0 commit comments