Belle II Software  release-05-01-25
RevRb2Sock.h
1 //+
2 // File : Rb2Sock.h
3 // Description : Pick an event from RingBuffer and send it to EvtSocket
4 //
5 // Author : Ryosuke Itoh, IPNS, KEK
6 // Date : 10 - Dec - 2002, Orignal for RFARM
7 // 26 - Apr - 2012, for Belle II RFARM
8 //-
9 
10 #include <string>
11 
12 #include "framework/pcore/RingBuffer.h"
13 #include "daq/dataflow/REvtSocket.h"
14 #include "daq/rfarm/manager/RFFlowStat.h"
15 
16 #define RBUFSIZE 100000000
17 
18 namespace Belle2 {
24  class RevRb2Sock {
25  public:
27  RevRb2Sock(std::string rbuf, int port, std::string shmname, int id);
28  ~RevRb2Sock(void);
29 
31  int SendEvent(void);
32 
33  private:
34  RingBuffer* m_rbuf;
35  REvtSocketSend* m_sock;
36  RFFlowStat* m_flow;
37  char* m_evtbuf;
38 
39  };
40 
42 }
Belle2::RevRb2Sock::RevRb2Sock
RevRb2Sock(std::string rbuf, int port, std::string shmname, int id)
Constuctor and Destructor.
Definition: RevRb2Sock.cc:17
Belle2::RFFlowStat
Definition: RFFlowStat.h:28
Belle2::RingBuffer
Class to manage a Ring Buffer placed in an IPC shared memory.
Definition: RingBuffer.h:36
Belle2
Abstract base class for different kinds of events.
Definition: MillepedeAlgorithm.h:19
Belle2::RevRb2Sock::SendEvent
int SendEvent(void)
Event function.
Definition: RevRb2Sock.cc:33
Belle2::RevRb2Sock
Definition: RevRb2Sock.h:24
Belle2::REvtSocketSend
Definition: REvtSocket.h:46