Skip to content

Commit

Permalink
Code Checks
Browse files Browse the repository at this point in the history
  • Loading branch information
Sunanda committed Dec 31, 2019
1 parent 16b0c9f commit f61b441
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions Geometry/HcalCommonData/src/HcalGeomParameters.cc
Expand Up @@ -262,8 +262,10 @@ void HcalGeomParameters::loadGeometry(const cms::DDCompactView* cpv, HcalParamet
int nsiz = static_cast<int>(copy.size());
#ifdef EDM_ML_DEBUG
edm::LogVerbatim("HCalGeom") << "Parameters: " << paras.size() << " Copy " << copy.size();
for (unsigned int n=0; n<copy.size(); ++n) edm::LogVerbatim("HCalGeom") << "[" << n << "] " << copy[n];
for (unsigned int n=0; n<paras.size(); ++n) edm::LogVerbatim("HCalGeom") << "[" << n << "] " << paras[n];
for (unsigned int n = 0; n < copy.size(); ++n)
edm::LogVerbatim("HCalGeom") << "[" << n << "] " << copy[n];
for (unsigned int n = 0; n < paras.size(); ++n)
edm::LogVerbatim("HCalGeom") << "[" << n << "] " << paras[n];
#endif
if (nsiz > 0)
lay = copy[nsiz - 1] / 10;
Expand Down

0 comments on commit f61b441

Please sign in to comment.