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
Original file line number Diff line number Diff line change
Expand Up @@ -112,9 +112,9 @@ class TrackReference
float X() const { return mX; }
float Y() const { return mY; }
float Z() const { return mZ; }
float Px() const { return mX; }
float Py() const { return mY; }
float Pz() const { return mZ; }
float Px() const { return mPX; }
float Py() const { return mPY; }
float Pz() const { return mPZ; }
float P() const { return TMath::Sqrt(mPX * mPX + mPY * mPY + mPZ * mPZ); }
Int_t getUserId() const { return mUserId; }
Int_t getDetectorId() const { return mDetectorId; }
Expand Down