#ifndef EVENT_H #define EVENT_H #include "ECAL_Layer.h" #include #include "TObject.h" /// \brief Event structure for PEBS09 testbeam. /// /// class Event : public TObject { public: Event(); ~Event(); virtual void clear(); unsigned long m_runNumber; unsigned long m_eventNumber; short int m_GetADC(int layer, int bar, int type); short int m_GetAttLG(int layer, int bar); short int m_GetAttHG(int layer, int bar); short int m_GetNotAttLG(int layer, int bar); short int m_GetNotAttHG(int layer, int bar); std::vector layers; ClassDef(Event,2) }; #endif