Skip to content
Snippets Groups Projects
Commit fa970a74 authored by Miroslav Saur's avatar Miroslav Saur
Browse files

Fixing message in RawBankSizeFilter

parent 4c48b040
No related branches found
No related tags found
2 merge requests!4738Synchronize master branch with 2024-patches,!4722Fixing message in RawBankSizeFilter
Pipeline #8364985 passed
......@@ -47,14 +47,14 @@ public:
}
bool acc = ( total_size > m_minsize );
m_acc += acc;
m_small_bank += !acc;
return acc;
}
private:
Gaudi::Property<std::size_t> m_minsize{this, "MinRawBankSize", 0};
mutable Gaudi::Accumulators::SummingCounter<unsigned int> m_emptyBanks{this, "Number of empty raw banks"};
mutable Gaudi::Accumulators::BinomialCounter<> m_acc{this, "Number of too small raw banks size"};
mutable Gaudi::Accumulators::BinomialCounter<> m_small_bank{this, "Number of too small raw banks size"};
};
//=============================================================================
......
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