BOSS 7.0.8
BESIII Offline Software System
Loading...
Searching...
No Matches
EvtRecObject.h
Go to the documentation of this file.
1#ifndef Event_EvtRecObject_H
2#define Event_EvtRecObject_H
3
4#include "GaudiKernel/DataObject.h"
6
7using namespace EventModel;
8
9extern const CLID& CLID_EvtRecObject;
10
11class EvtRecObject : public DataObject {
12
13 public:
14
15 virtual const CLID& clID() const { return EvtRecObject::classID();}
16 static const CLID& classID() { return CLID_EvtRecObject; }
17
18 // default constructor and destructor
19 EvtRecObject() : DataObject() {}
20 virtual ~EvtRecObject() {}
21
22 private:
23
24};
25
26#endif
const CLID & CLID_EvtRecObject
! Global link and reconstruction
Definition: EventModel.cxx:371
virtual const CLID & clID() const
Definition: EvtRecObject.h:15
static const CLID & classID()
Definition: EvtRecObject.h:16
virtual ~EvtRecObject()
Definition: EvtRecObject.h:20