Skip to content
Snippets Groups Projects
Commit fd78960e authored by Walter Lampl's avatar Walter Lampl
Browse files

Bugfix in CaloClusterMomentsMaker: Respect m_calculateLArHVFraction flag

parent 3d71d7b0
No related branches found
No related tags found
No related merge requests found
......@@ -538,11 +538,11 @@ CaloClusterMomentsMaker::execute(const EventContext& ctx,
ncell++;
}
} //end of loop over all cells
const auto hvFrac=m_larHVFraction->getLArHVFrac(theCluster->getCellLinks(),ctx);
eBadLArHV= hvFrac.first;
nBadLArHV=hvFrac.second;
if (m_calculateLArHVFraction) {
const auto hvFrac=m_larHVFraction->getLArHVFrac(theCluster->getCellLinks(),ctx);
eBadLArHV= hvFrac.first;
nBadLArHV=hvFrac.second;
}
if ( w > 0 ) {
mass = w*w - mx*mx - my*my - mz*mz;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment