BOSS 7.0.9
BESIII Offline Software System
Loading...
Searching...
No Matches
McEvent.h
Go to the documentation of this file.
1#ifndef MC_Event_H
2#define MC_Event_H
3
4#include "GaudiKernel/DataObject.h"
5
6extern const CLID &CLID_McEvent;
7
8class McEvent : public DataObject {
9
10 public:
12 virtual ~McEvent() {}
13
14 virtual const CLID& clID() const { return McEvent::classID();}
15 static const CLID& classID() { return CLID_McEvent; }
16
17 private:
18
19
20};
21
22#endif //MC_Event_H
const CLID & CLID_McEvent
Definition: EventModel.cxx:203
Definition: McEvent.h:8
virtual const CLID & clID() const
Definition: McEvent.h:14
virtual ~McEvent()
Definition: McEvent.h:12
McEvent()
Definition: McEvent.h:11
static const CLID & classID()
Definition: McEvent.h:15