#ifndef TMBEmCells_H #define TMBEmCells_H ////////////////////////////////////////////////////////////////////////// // // // TMBTree EmCells class // // // // Created by E. Nagy // // // // September 3rd 2002 // // // ////////////////////////////////////////////////////////////////////////// #ifndef ROOT_TObject #include "TObject.h" #endif class TMBEmCells : public TObject { private: Int_t _ieta; // eta-number Int_t _iphi; // phi-number Int_t _ilyr; // layer-number Float_t _E; // energy public: TMBEmCells(Int_t ieta, Int_t iphi, Int_t ilyr, Float_t E); TMBEmCells() {;} void Set(Int_t ieta, Int_t iphi, Int_t ilyr, Float_t E); Float_t E() {return _E;} Int_t ieta() {return _ieta;} Int_t iphi() {return _iphi;} Int_t ilyr() {return _ilyr;} ~TMBEmCells() {;} ClassDef(TMBEmCells, 1) //TMBTree EmCells class }; #endif