#ifndef ECALBAR_H #define ECALBAR_H #include #include /// \brief Event structure for PEBS09 testbeam. /// /// class ECAL_Bar : public TObject { public: ECAL_Bar(); ~ECAL_Bar(); ECAL_Bar(short int setNumber); void clear(); short int number; //can go from 0 to 9 short int notAttHG; short int notAttLG; short int attHG; short int attLG; ClassDef(ECAL_Bar,1) }; #endif