Skip to content

Commit

Permalink
Lower-case class methods
Browse files Browse the repository at this point in the history
  • Loading branch information
rovere committed Nov 30, 2015
1 parent aab7d9b commit 265e83b
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion TrackingTools/PatternTools/interface/TempTrajectory.h
Expand Up @@ -233,7 +233,7 @@ class TempTrajectory
* patter recognition. Used mainly as a criteria for abandoning a
* trajectory candidate during trajectory building.
*/
int CCCBadHits() const { return theNumberOfCCCBadHits_;}
int cccBadHits() const { return theNumberOfCCCBadHits_;}

//number of hits in seed
unsigned int seedNHits() const { return theNHseed;}
Expand Down
4 changes: 2 additions & 2 deletions TrackingTools/PatternTools/interface/Trajectory.h
Expand Up @@ -306,7 +306,7 @@ class Trajectory
* patter recognition. Used mainly as a criteria for abandoning a
* trajectory candidate during trajectory building.
*/
int CCCBadHits() const { return theNumberOfCCCBadHits_;}
int cccBadHits() const { return theNumberOfCCCBadHits_;}

//number of hits in seed
unsigned int seedNHits() const { return seed().nHits();}
Expand Down Expand Up @@ -394,7 +394,7 @@ class Trajectory
/// two layers crossed by the trajectory
float dPhiCacheForLoopersReconstruction() const { return theDPhiCache;}

float CCCThreshold() const {return theCCCThreshold_;}
float cccThreshold() const {return theCCCThreshold_;}

/// method to set the delta phi angle betweem the directions of the two measurements on the last
/// two layers crossed by the trajectory
Expand Down
2 changes: 1 addition & 1 deletion TrackingTools/PatternTools/src/TempTrajectory.cc
Expand Up @@ -18,7 +18,7 @@ TempTrajectory::TempTrajectory(Trajectory && traj):
theNHseed(traj.seedNHits()),
theNLoops(traj.nLoops()),
theDPhiCache(traj.dPhiCacheForLoopersReconstruction()),
theCCCThreshold_(traj.CCCThreshold()),
theCCCThreshold_(traj.cccThreshold()),
stopReason_(traj.stopReason()) {

Trajectory::DataContainer::const_iterator begin=traj.measurements().begin();
Expand Down

0 comments on commit 265e83b

Please sign in to comment.