#ifndef ECALLAYER_H #define ECALLAYER_H #include "ECAL_Bar.h" #include #include /// \brief Event structure for PEBS09 testbeam. /// /// class ECAL_Layer : public TObject { public: ECAL_Layer(); ~ECAL_Layer(); ECAL_Layer(short int setNumber, bool setIsX); virtual void clear(); short int number; //from 0 to 20 bool isX; std::vector bars; ClassDef(ECAL_Layer,1) }; #endif