Skip to content
Snippets Groups Projects

add 2 new run3 raw DAQ error bank types

Merged Guillaume Vouters requested to merge new_raw_data_bank_types_run3_mar24 into 2024-patches
3 files
+ 17
6
Compare changes
  • Side-by-side
  • Inline
Files
3
@@ -34,7 +34,9 @@ namespace {
"DaqErrorFragmentTruncated",
"DaqErrorIdleBXIDCorrupted",
"DaqErrorFragmentMalformed",
"DaqErrorEVIDJumped"};
"DaqErrorEVIDJumped",
"DaqErrorAlignFifoFull",
"DaqErrorFEfragSizeWrong"};
const std::vector<std::string> BankLocationLabels_Y = {"D1P0", "D1P1", "D2P0", "D2P1", "D3P0", "D3P1"};
@@ -58,7 +60,11 @@ public:
private:
mutable Gaudi::Accumulators::Histogram<1, Gaudi::Accumulators::atomicity::full, float> m_errorBankTypeHist = {
this, "ErrorsPerErrorBankType", "Errors", {9, -0.5, 9 - 0.5, "Error Bank", ErrorBankLabels}};
this,
"ErrorsPerErrorBankType",
"Errors",
{static_cast<unsigned int>( ErrorBankLabels.size() ), -0.5f, static_cast<float>( ErrorBankLabels.size() ) - 0.5f,
"Error Bank", ErrorBankLabels}};
mutable Gaudi::Accumulators::Histogram<2> m_errorsBankLocationHist2D = {
this,
Loading