Skip to content

Commit c3ad716

Browse files
committed
Fix indices for otf decayer
1 parent a930c3b commit c3ad716

2 files changed

Lines changed: 145 additions & 337 deletions

File tree

ALICE3/Core/TrackUtilities.h

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,8 @@ struct OTFParticle {
7272
float py() const { return mPy; }
7373
float pz() const { return mPz; }
7474
float e() const { return mE; }
75-
float radius() const { return std::hypot(mVx, mVy); }
75+
float r() const { return std::hypot(mVx, mVy); }
76+
float radius() const { return radius(); }
7677
float pt() const { return std::hypot(mPx, mPy); }
7778
float p() const { return std::hypot(mPx, mPy, mPz); }
7879

0 commit comments

Comments
 (0)