Belle II Software  release-08-01-10
DesSerPrePCMain.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 
9 #ifndef DESSERMAIN_H
10 #define DESSERMAIN_H
11 
12 #include <string>
13 
14 #include <framework/core/Module.h>
15 #include <framework/datastore/StoreObjPtr.h>
16 #include <framework/dataobjects/EventMetaData.h>
17 
18 namespace Belle2 {
26  class DesSerPrePCMainModule : public Module {
27 
28  // Public functions
29  public:
30 
33  virtual ~DesSerPrePCMainModule();
34 
36  void initialize() override;
37 
39  void event() override;
40 
41  protected :
43  std::string m_host_recv;
44 
46  std::string m_host_send;
47 
50 
53 
56 
58  int m_nodeid;
59 
61  std::string m_nodename;
62 
64  int m_shmflag;
65 
66  // Event Meta Data
67  StoreObjPtr<EventMetaData> m_eventMetaDataPtr;
68 
69  private:
70 
71 
72  public:
73 
74  };
75 
77 } // end namespace Belle2
78 
79 #endif // MODULEHELLO_H
A class definition of an input module for Sequential ROOT I/O.
void initialize() override
Module functions to be called from main process.
std::string m_nodename
Node name.
std::string m_host_send
hostname
void event() override
Module functions to be called from main process.
int m_shmflag
Use shared memory -> 1; Without shm -> 0.
DesSerPrePCMainModule()
Constructor / Destructor.
int m_compressionLevel
Compression Level.
std::string m_host_recv
hostname
int m_nodeid
Node(PC or COPPER) ID.
Base class for Modules.
Definition: Module.h:72
Type-safe access to single objects in the data store.
Definition: StoreObjPtr.h:96
Abstract base class for different kinds of events.