stream  0.10.0
stream analysis framework
mbs/SubEvent.h
1 #ifndef MBS_SUBEVENT_H
2 #define MBS_SUBEVENT_H
3 
4 #include "base/SubEvent.h"
5 
6 namespace mbs {
7 
9  class SubEvent : public base::SubEvent {
10 
11  public:
13  SubEvent() : base::SubEvent() {}
14 
16  virtual ~SubEvent() {}
17 
19  virtual void Clear() {}
20 
22  virtual void Sort() {}
23 
25  virtual unsigned Multiplicity() const { return 1; }
26  };
27 }
28 
29 
30 
31 #endif
SubEvent - base class for all event structures Need for: virtual destructor - to be able delete any i...
Definition: base/SubEvent.h:14
subevent with MBS data
Definition: mbs/SubEvent.h:9
virtual ~SubEvent()
destructor
Definition: mbs/SubEvent.h:16
virtual void Clear()
clear
Definition: mbs/SubEvent.h:19
virtual unsigned Multiplicity() const
Method returns event multiplicity - that ever it means.
Definition: mbs/SubEvent.h:25
virtual void Sort()
sort
Definition: mbs/SubEvent.h:22
SubEvent()
constructor
Definition: mbs/SubEvent.h:13