Skip to content

Commit

Permalink
Reordered initialization of data members to match their order of decl…
Browse files Browse the repository at this point in the history
…aration
  • Loading branch information
Aaron Dominguez committed Oct 30, 2009
1 parent 1f7c5b4 commit ddf4aec
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -73,8 +73,8 @@ DivisiveClusterizer1D<T>::DivisiveClusterizer1D(float zoffset,
int ntkmin,
bool useError,
float zsep, bool wei)
:theZOffSet(zoffset), theZSeparation(zsep), theNTkMin(ntkmin),
theWei(wei), theUseError(useError)
:theZOffSet(zoffset), theNTkMin(ntkmin),
theUseError(useError), theZSeparation(zsep), theWei(wei)
{
// theDiscardedTracks.clear();
// theTotalDiscardedTracks.clear();
Expand Down

0 comments on commit ddf4aec

Please sign in to comment.