Skip to content

Commit 95ff353

Browse files
committed
ITS: Cell fix constructor annotation
1 parent f0c7a81 commit 95ff353

File tree

1 file changed

+4
-4
lines changed
  • Detectors/ITSMFT/ITS/tracking/include/ITStracking

1 file changed

+4
-4
lines changed

Detectors/ITSMFT/ITS/tracking/include/ITStracking/Cell.h

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ class Cell final
3030
{
3131
public:
3232
GPUhd() Cell() = default;
33-
GPUdi() Cell(const int firstClusterIndex, const int secondClusterIndex, const int thirdClusterIndex,
33+
GPUhd() Cell(const int firstClusterIndex, const int secondClusterIndex, const int thirdClusterIndex,
3434
const int firstTrackletIndex, const int secondTrackletIndex)
3535
: mFirstClusterIndex(firstClusterIndex),
3636
mSecondClusterIndex(secondClusterIndex),
@@ -60,8 +60,8 @@ class Cell final
6060
class CellSeed final : public o2::track::TrackParCovF
6161
{
6262
public:
63-
GPUd() CellSeed() = default;
64-
GPUd() CellSeed(int innerL, int cl0, int cl1, int cl2, int trkl0, int trkl1, o2::track::TrackParCovF& tpc, float chi2) : o2::track::TrackParCovF{tpc}, mLevel{1}, mChi2{chi2}
63+
GPUhd() CellSeed() = default;
64+
GPUhd() CellSeed(int innerL, int cl0, int cl1, int cl2, int trkl0, int trkl1, o2::track::TrackParCovF& tpc, float chi2) : o2::track::TrackParCovF{tpc}, mLevel{1}, mChi2{chi2}
6565
{
6666
setUserField(innerL);
6767
mClusters[innerL + 0] = cl0;
@@ -84,7 +84,7 @@ class CellSeed final : public o2::track::TrackParCovF
8484
GPUhd() int* getLevelPtr() { return &mLevel; }
8585
GPUhd() int* getClusters() { return mClusters; }
8686
GPUhd() int getCluster(int i) const { return mClusters[i]; }
87-
GPUhdi() void printCell() const
87+
GPUhd() void printCell() const
8888
{
8989
printf("trkl: %d, %d\t lvl: %d\t chi2: %f\n", mTracklets[0], mTracklets[1], mLevel, mChi2);
9090
}

0 commit comments

Comments
 (0)