Skip to content

Commit

Permalink
Merge pull request #25675 from makortel/fixClangRecoLocalTrackerSiPix…
Browse files Browse the repository at this point in the history
…elRecHits

Fix clang warnings in RecoLocalTracker/SiPixelRecHits
  • Loading branch information
cmsbuild committed Jan 16, 2019
2 parents 62e5500 + aeec82a commit 6e8276a
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
2 changes: 1 addition & 1 deletion RecoLocalTracker/SiPixelRecHits/src/PixelCPEGeneric.cc
Expand Up @@ -182,7 +182,7 @@ PixelCPEGeneric::localPosition(DetParam const & theDetParam, ClusterParam & theC
float locBx = theDetParam.bx;
//cout << "PixelCPEGeneric::localPosition(...) : locBz = " << locBz << endl;

theClusterParam.pixmx = -999.9; // max pixel charge for truncation of 2-D cluster
theClusterParam.pixmx = -999; // max pixel charge for truncation of 2-D cluster
theClusterParam.sigmay = -999.9; // CPE Generic y-error for multi-pixel cluster
theClusterParam.deltay = -999.9; // CPE Generic y-bias for multi-pixel cluster
theClusterParam.sigmax = -999.9; // CPE Generic x-error for multi-pixel cluster
Expand Down
Expand Up @@ -35,7 +35,6 @@
#include "FWCore/MessageLogger/interface/MessageLogger.h"
#define LOGERROR(x) edm::LogError(x)
#define LOGDEBUG(x) LogDebug(x)
static const int theVerboseLevel = 2;
#define ENDL " "
#include "FWCore/Utilities/interface/Exception.h"
#else
Expand Down

0 comments on commit 6e8276a

Please sign in to comment.