#ifndef HRICHLOCAL_H
#define HRICHLOCAL_H
#pragma interface
using namespace std;
#include "TObject.h"
#include <iostream>
#include <iomanip>
#include "TMath.h"
class HRichLocal : public TObject {
public:
HRichLocal() {}
~HRichLocal() {}
Int_t clear();
Int_t getRow() {return fRow;}
Int_t getCol() {return fCol;}
Int_t getSector() {return fSector;}
Int_t getAddress() {return fAddress;}
Int_t getEventNr() {return fEventNr;}
Int_t getLocalEventNr() {return fLocalEventNr;}
Float_t getLocalCharge() {return fLocalCharge;}
Float_t getLocalTheta() {return fLocalTheta;}
Float_t getLocalPhi() {return fLocalPhi;}
Float_t getLocalEnergy() {return fLocalEnergy;}
Int_t getRing() {return fRing;}
Int_t getFlagMax(){ return iFlag;}
Int_t getPadNr(){ return iPadNr;}
void setRow(Int_t Row) {fRow = Row;}
void setCol(Int_t Col) {fCol = Col;}
void setSector(Int_t Sector) {fSector = Sector;}
void setAddress(Int_t Address) {fAddress = Address;}
void setEventNr(Int_t EventNr) {fEventNr = EventNr;}
void setLocalEventNr(Int_t LocalEventNr) {fLocalEventNr = LocalEventNr;}
void setLocalCharge(Float_t LocalCharge) {fLocalCharge = LocalCharge;}
void setLocalTheta(Float_t LocalTheta) {fLocalTheta = LocalTheta;}
void setLocalPhi(Float_t LocalPhi) {fLocalPhi = LocalPhi;}
void setLocalEnergy(Float_t LocalEnergy) {fLocalEnergy = LocalEnergy;}
void setRing(Int_t Ring) {fRing = Ring;}
void setPadNr(Int_t pN){iPadNr = pN;}
void setFlagMax(Int_t fM){iFlag = fM;}
private:
Int_t fRow;
Int_t fCol;
Int_t fSector;
Int_t fAddress;
Int_t fEventNr;
Int_t fLocalEventNr;
Float_t fLocalCharge;
Float_t fLocalPhi;
Float_t fLocalTheta;
Float_t fLocalEnergy;
Int_t fRing;
Int_t iFlag;
Int_t iPadNr;
ClassDef(HRichLocal,1)
};
#endif /* !HRICHLOCAL_H */
Last change: Sat May 22 13:09:19 2010
Last generated: 2010-05-22 13:09
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.