#ifndef EVENT_HH #define EVENT_HH 1 #include #include #include #include "TObject.h" #include using namespace std; typedef std::map Param; class Event : public TObject { private: Param fParam; std::vector fVarName; public: Event(); ~Event(); //void destroy(); void Set(const string key, double value); double Get(const string key); Param GetParam(); vector GetVarName(); ClassDef(Event,1); }; #endif