Skip to content

Commit

Permalink
Merge pull request cms-sw#716 from argiro/osxfix
Browse files Browse the repository at this point in the history
fixed uninitialized variables
  • Loading branch information
davidlt committed Sep 6, 2013
2 parents 0666587 + f0746ab commit 9a640c8
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion RecoEcal/EgammaClusterAlgos/src/PFECALSuperClusterAlgo.cc
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,8 @@ namespace {
const CalibClusterPtr the_seed;
const double _threshold, _majority;
const double _maxSatelliteDEta, _maxSatelliteDPhi;
double x_rechits_tot, x_rechits_match;
double x_rechits_tot=0;
double x_rechits_match=0;
IsLinkedByRecHit(const CalibClusterPtr& s, const double threshold,
const double majority, const double maxDEta,
const double maxDPhi) :
Expand Down

0 comments on commit 9a640c8

Please sign in to comment.