Belle II Software  release-08-01-10
RfNodeInfo.h
1 /**************************************************************************
2  * basf2 (Belle II Analysis Software Framework) *
3  * Author: The Belle II Collaboration *
4  * *
5  * See git log for contributors and copyright holders. *
6  * This file is licensed under LGPL-3.0, see LICENSE.md. *
7  **************************************************************************/
8 #ifndef RFNODEINFO_H
9 #define RFNODEINFO_H
10 
11 // Node info placed in NSM shared memory
12 namespace Belle2 {
17  struct RfNodeInfo {
18  int sysstate;
19  int nevent_in;
20  int nqueue_in;
21  int nevent_out;
22  int nqueue_out;
23  int error;
24  int pid_input;
25  int pid_output;
26  int pid_basf2;
27  int pid_hserver;
28  int pid_hrelay;
29  int i_reserved[4];
30  float flowrate_in;
31  float flowrate_out;
32  float avesize_in;
33  float avesize_out;
34  float evtrate_in;
35  float evtrate_out;
36  float loadave;
37  float r_reserved[9];
38  };
40 }
41 #endif
42 
43 
44 
45 
Abstract base class for different kinds of events.