#ifndef HWALLCAL_H
#define HWALLCAL_H
#include "TObject.h"
#include "hwallraw.h"
class HWallCal : public TObject {
protected:
Int_t nHits;
Int_t cell;
Float_t time1;
Float_t adc1;
Float_t time2;
Float_t adc2;
Float_t time3;
Float_t adc3;
Float_t time4;
Float_t adc4;
public:
HWallCal(void) { clear(); }
~HWallCal(void) {;}
void clear(void);
Int_t getNHits(void) const { return nHits; }
Int_t getCell(void) const { return cell; }
Float_t getTime(const Int_t n) const;
Float_t getAdc(const Int_t n) const;
void getTimeAndAdc(const Int_t n, Float_t& time, Float_t& adc );
inline Int_t getMaxMult(void){ return(4);}
void setCell(const Int_t n) { cell=n; }
Bool_t setTimeAdc(const Float_t t,const Float_t a);
ClassDef(HWallCal,1)
};
#endif /* ! HWALLCAL_H */
Last change: Sat May 22 13:17:25 2010
Last generated: 2010-05-22 13:17
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.