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

Merge branch 'msaur_confusing_message' into '2024-patches'

Fixing message in RawBankSizeFilter

See merge request !4722
parents 83515444 fa970a74
No related branches found
No related tags found
2 merge requests!4738Synchronize master branch with 2024-patches,!4722Fixing message in RawBankSizeFilter
Pipeline #8375750 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