#ifndef HMATCHURICH_H
#define HMATCHURICH_H
#include "TObject.h"
class HMatchURich : public TObject
{
protected:
Int_t fFifoNb;
Int_t fSegmentId;
Int_t fColumnPattern;
Int_t fRowNb;
Int_t fColumn;
Int_t fRow;
Float_t fTheta;
Float_t fPhi;
Int_t iRingX;
Int_t iRingY;
public:
HMatchURich(void);
~HMatchURich(void);
Int_t getFifo(void) { return fFifoNb; };
Int_t getColumnPattern(void) { return fColumnPattern; };
Int_t getSegmentId(void) { return fSegmentId; };
Int_t getSector(void) {return fSegmentId;};
Int_t getRowNb(void) {return fRowNb; };
Int_t getRow(void) {return fRow; };
Int_t getColumn(void) { return fColumn; };
Float_t getTheta(void) { return fTheta; };
Float_t getPhi(void) { return fPhi; };
Int_t getX(void) {return iRingX;};
Int_t getY(void) {return iRingY;};
void setFifo(Int_t fifo) { fFifoNb=fifo; };
void setColumnPattern(Int_t colPat) { fColumnPattern=colPat; };
void setSegmentId(Int_t segId) { fSegmentId=segId; };
void setRowNb(Int_t row) { fRowNb=row; };
void setColumn(Int_t col) { fColumn=col; };
void setRow(Int_t row) { fRow=row; };
void setTheta(Float_t th) { fTheta=th; };
void setPhi(Float_t ph) { fPhi=ph; };
void setX(Int_t px) { iRingX = px; };
void setY(Int_t py) { iRingY = py; };
ClassDef(HMatchURich,1)
};
#endif
Last change: Sat May 22 12:59:22 2010
Last generated: 2010-05-22 12:59
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.