Skip to content

Commit

Permalink
Merge pull request #12975 from davidlt/fix-reco-ppc64le-SubTurbineCro…
Browse files Browse the repository at this point in the history
…ssings
  • Loading branch information
cmsbuild committed Jan 19, 2016
2 parents 76ce5e6 + 42fc50d commit cccaf13
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion RecoTracker/TkDetLayers/src/PixelForwardLayer.h
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ class PixelForwardLayer final : public ForwardDetLayer {
static int computeHelicity(const GeometricSearchDet* firstBlade,const GeometricSearchDet* secondBlade);

struct SubTurbineCrossings {
SubTurbineCrossings(): isValid(false){}
SubTurbineCrossings(): isValid(false), closestIndex(0), nextIndex(0), nextDistance(0.0f) {}
SubTurbineCrossings( int ci, int ni, float nd) :
isValid(true),closestIndex(ci), nextIndex(ni), nextDistance(nd) {}

Expand Down
2 changes: 1 addition & 1 deletion RecoTracker/TkDetLayers/src/PixelForwardLayerPhase1.h
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ class PixelForwardLayerPhase1 final : public ForwardDetLayer {
static int computeHelicity(const GeometricSearchDet* firstBlade,const GeometricSearchDet* secondBlade);

struct SubTurbineCrossings {
SubTurbineCrossings(): isValid(false){}
SubTurbineCrossings(): isValid(false), closestIndex(0), nextIndex(0), nextDistance(0.0f) {}
SubTurbineCrossings( int ci, int ni, float nd) :
isValid(true),closestIndex(ci), nextIndex(ni), nextDistance(nd) {}

Expand Down

0 comments on commit cccaf13

Please sign in to comment.