Skip to content

Commit

Permalink
clang error recovery
Browse files Browse the repository at this point in the history
  • Loading branch information
Sunanda committed Sep 1, 2020
1 parent 2aece58 commit 1b136fe
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Validation/HGCalValidation/plugins/HGCalBHValidation.cc
Original file line number Diff line number Diff line change
Expand Up @@ -144,8 +144,8 @@ void HGCalBHValidation::analyze(const edm::Event& e, const edm::EventSetup&) {
double energy = it->energy();
double time = it->time();
unsigned int id = it->id();
int subdet, z, depth, eta, phi, lay;
bool hbhe, bh;
int subdet(0), z(0), depth(0), eta(0), phi(0), lay(0);
bool hbhe(false), bh(false);
if (geomType_ == 0) {
HcalTestNumbering::unpackHcalIndex(id, subdet, z, depth, eta, phi, lay);
if (z == 0)
Expand Down

0 comments on commit 1b136fe

Please sign in to comment.