//////////////////////////////////// // Start Event Unpacker // for the Asy-EOS experiment // A. Le Fevre, revision 11/2012 //////////////////////////////////// #ifndef TCAMACEVENT_H #define TCAMACEVENT_H #include "TList.h" #include "TROOT.h" class TCAMACEvent { public: TCAMACEvent(); //constructor virtual ~TCAMACEvent(); //destructor float tstart_sc(int *, int); }; extern TCAMACEvent *gcamacevent; // a global instance to TCAMACEvent class #endif