Skip to content
Snippets Groups Projects
Commit 125d6e2f authored by Pierre-Alain Loizeau's avatar Pierre-Alain Loizeau Committed by Pierre-Alain Loizeau
Browse files

[mCBM 24] In legacy unpack macros, fix missing settings for SCVD BMon

parent a6260228
No related branches found
No related tags found
1 merge request!1907[mCBM 24] In legacy online and bmon unpack macros, fix missing settings for SCVD BMon
Pipeline #30945 passed
......@@ -123,6 +123,11 @@ void run_unpack_online(std::vector<std::string> publisher = {"tcp://localhost:55
bmonconfig->GetMonitor()->SetSpillThreshold(250);
bmonconfig->GetMonitor()->SetSpillThresholdNonPulser(100);
}
if (2981 <= runid) {
bmonconfig->GetMonitor()->SetSpillThreshold(900);
bmonconfig->GetMonitor()->SetSpillThresholdNonPulser(750);
bmonconfig->GetMonitor()->SetBmonScvdMode(true);
}
}
}
// -------------
......
......@@ -143,6 +143,11 @@ void run_unpack_tsa(std::vector<std::string> infile = {"test.tsa"}, UInt_t runid
// bmonconfig->GetMonitor()->SetSpillThreshold(250);
// bmonconfig->GetMonitor()->SetSpillThresholdNonPulser(100);
// }
// if (2981 <= runid) {
// bmonconfig->GetMonitor()->SetSpillThreshold(900);
// bmonconfig->GetMonitor()->SetSpillThresholdNonPulser(750);
// bmonconfig->GetMonitor()->SetBmonScvdMode(true);
// }
}
}
// -------------
......
......@@ -128,6 +128,11 @@ void run_unpack_tsa_bmon(std::vector<std::string> infile = {"test.tsa"}, UInt_t
bmonconfig->GetMonitor()->SetSpillThreshold(250);
bmonconfig->GetMonitor()->SetSpillThresholdNonPulser(100);
}
if (2981 <= runid) {
bmonconfig->GetMonitor()->SetSpillThreshold(900);
bmonconfig->GetMonitor()->SetSpillThresholdNonPulser(750);
bmonconfig->GetMonitor()->SetBmonScvdMode(true);
}
}
// -------------
......
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