Skip to content
Snippets Groups Projects
Commit c799b605 authored by Frank Winklmeier's avatar Frank Winklmeier
Browse files

Merge branch 'AT-CutBookeepers-bugfix-r22' into 'master'

AnalysisTop: Fix for loading CutBookkeepers for samples with only one weight

See merge request atlas/athena!39167
parents 2ae4858b 26b383b5
No related branches found
No related tags found
No related merge requests found
......@@ -165,7 +165,10 @@ namespace top {
void parseCutBookkeepers(xAOD::TEvent& xaodEvent, const std::size_t size,
std::vector<std::string> &names, std::vector<float>& sumW, const bool isHLLHC) {
for (std::size_t icbk = 0; icbk < size; ++icbk) {
// workaround for PMGTruthWeightTool returning ZERO weights, when sample has ONLY ONE weight...
const std::size_t modifiedSize = (size == 0) ? 1 : size;
for (std::size_t icbk = 0; icbk < modifiedSize; ++icbk) {
const std::string cbkName = (icbk == 0) ? "CutBookkeepers" : "CutBookkeepers_weight_" + std::to_string(icbk);
const xAOD::CutBookkeeperContainer* cutBookKeepers = nullptr;
top::check(xaodEvent.retrieveMetaInput(cutBookKeepers, cbkName), "Cannot retrieve CutBookkeepers: " + cbkName);
......
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