Skip to content

Commit 5305528

Browse files
committed
fixup
1 parent 95ff353 commit 5305528

File tree

1 file changed

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

1 file changed

+11
-0
lines changed

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

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -38,6 +38,11 @@ class Cell final
3838
mFirstTrackletIndex(firstTrackletIndex),
3939
mSecondTrackletIndex(secondTrackletIndex),
4040
mLevel(1) {}
41+
GPUhd() ~Cell() = default;
42+
GPUhd() Cell(const Cell&) = default;
43+
GPUhd() Cell(Cell&&) = default;
44+
GPUhd() Cell& operator=(const Cell&) = default;
45+
GPUhd() Cell& operator=(Cell&&) = default;
4146

4247
GPUhd() int getFirstClusterIndex() const { return mFirstClusterIndex; };
4348
GPUhd() int getSecondClusterIndex() const { return mSecondClusterIndex; };
@@ -61,6 +66,7 @@ class CellSeed final : public o2::track::TrackParCovF
6166
{
6267
public:
6368
GPUhd() CellSeed() = default;
69+
GPUhd() CellSeed(const CellSeed&) = default;
6470
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}
6571
{
6672
setUserField(innerL);
@@ -70,6 +76,11 @@ class CellSeed final : public o2::track::TrackParCovF
7076
mTracklets[0] = trkl0;
7177
mTracklets[1] = trkl1;
7278
}
79+
GPUhd() CellSeed(CellSeed&&) = default;
80+
GPUhd() CellSeed& operator=(const CellSeed&) = default;
81+
GPUhd() CellSeed& operator=(CellSeed&&) = default;
82+
GPUhd() ~CellSeed() = default;
83+
7384
GPUhd() int getFirstClusterIndex() const { return mClusters[getUserField()]; };
7485
GPUhd() int getSecondClusterIndex() const { return mClusters[getUserField() + 1]; };
7586
GPUhd() int getThirdClusterIndex() const { return mClusters[getUserField() + 2]; };

0 commit comments

Comments
 (0)