Skip to content

Commit

Permalink
Remove unnecessary const-qualifiers
Browse files Browse the repository at this point in the history
  • Loading branch information
tmadlener committed Oct 20, 2022
1 parent dc7574f commit ae8963c
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions source/include/HelixClassT.h
Original file line number Diff line number Diff line change
Expand Up @@ -112,12 +112,12 @@ class HelixClassT {
* Returns momentum of particle at the point of closest approach <br>
* to IP <br>
*/
const FloatT *const getMomentum() const { return _momentum; }
const FloatT* getMomentum() const { return _momentum; }

/**
* Returns reference point of track <br>
*/
const FloatT *const getReferencePoint() const { return _referencePoint; }
const FloatT* getReferencePoint() const { return _referencePoint; }

/**
* Returns Phi angle of the momentum vector <br>
Expand Down Expand Up @@ -245,12 +245,12 @@ class HelixClassT {
/**
* Returns starting point of helix
*/
const FloatT *const getStartingPoint() const {return _xStart;}
const FloatT* getStartingPoint() const {return _xStart;}

/**
* Returns endpoint of helix
*/
const FloatT *const getEndPoint() const {return _xEnd;}
const FloatT* getEndPoint() const {return _xEnd;}

/**
* Returns BZ for the second parameterization
Expand Down

0 comments on commit ae8963c

Please sign in to comment.