hpstr
The Heavy Photon Search Toolkit for Reconstruction (hpstr) provides an interface to physics data from the HPS experiment saved in the LCIO format and converts it into an ROOT based format.
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Pages
IEvent.h
Go to the documentation of this file.
1#ifndef __IEVENT_H__
2#define __IEVENT_H__
3
4
5#include "TObject.h"
6
7class IEvent {
8
9 public:
10 virtual ~IEvent(){};
11
12 virtual void add(const std::string name, TObject* object) = 0;
13
14};
15
16
17#endif
Definition IEvent.h:7
virtual void add(const std::string name, TObject *object)=0
virtual ~IEvent()
Definition IEvent.h:10