Skip to content
Snippets Groups Projects
Commit 4c82913b authored by Markus Frank's avatar Markus Frank
Browse files

Add new bank types according to LHCb!4486

parent 9c6d186e
No related branches found
No related tags found
2 merge requests!1007New EB release,!995Add new bank types according to https://gitlab.cern.ch/lhcb/LHCb/-/merge_requests/4486
......@@ -130,7 +130,8 @@ namespace Online {
VeloSPPandCluster = 97, //
UTNZS = 98, //
UTSpecial = 99, //
DaqErrorAlignFifoFull = 100, // 100
DaqErrorFEfragSizeWrong = 101, // 101
// Add new types here. Don't forget to update also RawBank.cpp
LastType, // LOOP Marker; add new bank types ONLY before!
};
......
......@@ -416,6 +416,8 @@ std::string Online::event_print::bankType(int i) {
PRINT(VeloSPPandCluster); // 97
PRINT(UTNZS); // 98
PRINT(UTSpecial); // 99
PRINT(DaqErrorAlignFifoFull); // 100
PRINT(DaqErrorFEfragSizeWrong); // 101
default:
return "UNKNOWN";
......
......@@ -56,11 +56,7 @@ namespace Online {
error() << "+++ Failed to access Incident service." << endmsg;
return StatusCode::FAILURE;
}
long prefill = (m_num_pre_fill >= 0) ? m_num_pre_fill.value() : 1L;
info() << "Prefilling counter entries with " << prefill << " turns." << endmsg;
for( long i = 0; i < prefill; ++i ) {
i_fill();
}
m_incident->addListener(this, "APP_RUNNING");
m_incident->addListener(this, "DAQ_RUNNING");
m_incident->addListener(this, "DAQ_STOPPED");
m_incident->addListener(this, "DAQ_CANCEL");
......@@ -132,7 +128,14 @@ namespace Online {
/// IIncidentListener overload: incident callback handler
void GauchoTestProcess::handle(const Incident& incident) {
info() << "Incidient received: " << incident.type() << endmsg;
if ( incident.type() == "DAQ_RUNNING" ) {
if ( incident.type() == "APP_RUNNING" ) {
long prefill = (m_num_pre_fill >= 0) ? m_num_pre_fill.value() : 1L;
info() << "Prefilling counter entries with " << prefill << " turns." << endmsg;
for( long i = 0; i < prefill; ++i ) {
i_fill();
}
}
else if ( incident.type() == "DAQ_RUNNING" ) {
if ( m_goto_pause > 0 ) {
info() << "Rearmed transition to PAUSED in " << m_goto_pause << " seconds." << endmsg;
TimeSensor::instance().add(this, m_goto_pause.value(), CMD_PAUSE);
......
......@@ -102,4 +102,6 @@ Known LHCb bnk types:
| 97 | VeloSPPandCluster
| 98 | UTNZS
| 99 | UTSpecial
| 100 | DaqErrorAlignFifoFull
| 101 | DaqErrorFEfragSizeWrong
+----------+----------------------------------------------------------
......@@ -20,6 +20,7 @@
####-##-## TIME-### INFO Counters Invoke transition to PAUSED now.
####-##-## TIME-### INFO Counters Incidient received: DAQ_STOPPED
####-##-## TIME-### INFO Counters Incidient received: DAQ_RUNNING
####-##-## TIME-### INFO Counters Incidient received: APP_RUNNING
####-##-## TIME-### INFO ApplicationMgr Application Manager Terminated successfully
####-##-## TIME-### INFO ApplicationMgr Application Manager Stopped successfully
####-##-## TIME-### INFO ApplicationMgr Application Manager Started successfully
......
......@@ -19,6 +19,7 @@
####-##-## TIME-### INFO Histos Invoke transition to PAUSED now.
####-##-## TIME-### INFO Histos Incidient received: DAQ_STOPPED
####-##-## TIME-### INFO Histos Incidient received: DAQ_RUNNING
####-##-## TIME-### INFO Histos Incidient received: APP_RUNNING
####-##-## TIME-### INFO EventLoopMgr Histograms converted successfully according to request.
####-##-## TIME-### INFO ApplicationMgr Application Manager Terminated successfully
####-##-## TIME-### INFO ApplicationMgr Application Manager Stopped successfully
......
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