#ifndef HRICHDIRCLUS_H
#define HRICHDIRCLUS_H
#include "TObject.h"
class HRichDirClus: public TObject {
public:
HRichDirClus();
virtual ~HRichDirClus();
void setXYDim(Float_t x, Float_t y) {xDim = x; yDim = y;}
void setSector(Int_t sec) {sector = sec;}
void setTotalCharge(Float_t charge) {totalCharge=charge;}
void setNrPad(Int_t padnr) {nrPad=padnr;}
void setPhiDiff(Float_t phi) {phiDiff=phi;}
void setTheta(Float_t T) {theta = T;}
void setX(Float_t X) {meanX = X;}
void setY(Float_t Y) {meanY = Y;}
Int_t getSector() {return sector;}
Int_t getNrPad() {return nrPad;}
Float_t getXDim() {return xDim;}
Float_t getYDim() {return yDim;}
Float_t getTotalCharge() {return totalCharge;}
Float_t getPhiDiff() {return phiDiff;}
Float_t getTheta() {return theta;}
Float_t getX() {return meanX;}
Float_t getY() {return meanY;}
private:
Int_t sector;
Int_t nrPad;
Float_t xDim;
Float_t yDim;
Float_t totalCharge;
Float_t phiDiff;
Float_t theta;
Float_t meanX;
Float_t meanY;
ClassDef(HRichDirClus,3)
};
#endif // HRICHDIRCLUS_H
Last change: Sat May 22 13:08:42 2010
Last generated: 2010-05-22 13:08
This page has been automatically generated. If you have any comments or suggestions about the page layout send a mail to ROOT support, or contact the developers with any questions or problems regarding ROOT.