Skip to content

Commit

Permalink
fix in getter for index of friend track
Browse files Browse the repository at this point in the history
  • Loading branch information
shahor02 committed Nov 13, 2015
1 parent 0633f98 commit bcb3df0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion STEER/ESD/AliESDtrack.h
Original file line number Diff line number Diff line change
Expand Up @@ -532,7 +532,7 @@ class AliESDtrack : public AliExternalTrackParam {
void SetFriendNotStored(Bool_t v) {v ? (fFlags|=AliVTrack::kSkipFriend) : (fFlags&=(~AliVTrack::kSkipFriend));}
Bool_t GetFriendNotStored() const {return IsOn(AliVTrack::kSkipFriend);}
void SetFriendTrackID(int id) {fFrTrackID = UShort_t(id+1);}
Int_t GetFriendTrackID() const {Int_t(fFrTrackID)-1;}
Int_t GetFriendTrackID() const {return Int_t(fFrTrackID)-1;}

protected:

Expand Down

0 comments on commit bcb3df0

Please sign in to comment.