Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 46411
b: "refs/heads/CMSSW_7_1_X"
c: 8b66d51
h: "refs/heads/CMSSW_7_1_X"
i:
  46409: 8a3c19e
  46407: 4f9754a
v: v3
  • Loading branch information
Federico Ferri committed Jun 24, 2008
1 parent 3868caf commit d052622
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
---
refs/heads/gh-pages: ac155dadd83efa75cad55c0508a57a2b9dd3d66c
"refs/heads/CMSSW_7_1_X": 04baab190438c7dce51464fdd8897356acf9fcd4
"refs/heads/CMSSW_7_1_X": 8b66d51a4cc1bbbe783fe9ae2010d00111390e55
4 changes: 2 additions & 2 deletions trunk/RecoEcal/EgammaClusterAlgos/src/HybridClusterAlgo.cc
Original file line number Diff line number Diff line change
Expand Up @@ -328,9 +328,9 @@ void HybridClusterAlgo::mainSearch(const EcalRecHitCollection* hits, const CaloS
//std::cout << "idxPeak, phiSteps " << idxPeak << ", " << phiSteps << std::endl;
e5x5 = lump;
//std::cout << "lump " << e5x5 << std::endl;
if (abs(idxPeak + 1) < dominoEnergy.size()) e5x5 += dominoEnergy[idxPeak + 1];
if (abs(idxPeak + 1) < (int)dominoEnergy.size()) e5x5 += dominoEnergy[idxPeak + 1];
//std::cout << "+1 " << e5x5 << std::endl;
if (abs(idxPeak + 2) < dominoEnergy.size()) e5x5 += dominoEnergy[idxPeak + 2];
if (abs(idxPeak + 2) < (int)dominoEnergy.size()) e5x5 += dominoEnergy[idxPeak + 2];
//std::cout << "+2 " << e5x5 << std::endl;
if (abs(idxPeak - 1) > 0) e5x5 += dominoEnergy[idxPeak - 1];
//std::cout << "-1 " << e5x5 << std::endl;
Expand Down

0 comments on commit d052622

Please sign in to comment.