Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Detectors/ITSMFT/ITS/tracking/include/ITStracking/Cell.h
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ class CellSeed final : public o2::track::TrackParCovF
GPUhd() void setFirstTrackletIndex(int trkl) { mTracklets[0] = trkl; };
GPUhd() int getSecondTrackletIndex() const { return mTracklets[1]; };
GPUhd() void setSecondTrackletIndex(int trkl) { mTracklets[1] = trkl; };
GPUhd() int getChi2() const { return mChi2; };
GPUhd() float getChi2() const { return mChi2; };
GPUhd() void setChi2(float chi2) { mChi2 = chi2; };
GPUhd() int getLevel() const { return mLevel; };
GPUhd() void setLevel(int level) { mLevel = level; };
Expand Down