#ifndef HWALLRAWSIM_H
#define HWALLRAWSIM_H
#include "hwallraw.h"
class HWallRawSim : public HWallRaw {
protected:
Int_t nTrack1;
Int_t nTrack2;
Short_t nHit;
public:
HWallRawSim(void) : nTrack1(-1), nTrack2(-1) {}
~HWallRawSim(void) {}
void clear(void);
inline void setNTrack1(const Int_t n) {nTrack1=n;}
inline void setNTrack2(const Int_t n) {nTrack2=n;}
void setNTrack(Int_t );
inline Int_t getNTrack1(void) const {return nTrack1;}
inline Int_t getNTrack2(void) const {return nTrack2;}
inline Short_t getNHit(void);
inline void setNHit(Short_t anHit);
void incNHit(void) {nHit++;}
ClassDef(HWallRawSim,1)
};
inline Short_t HWallRawSim::getNHit(void) {
return nHit;
}
inline void HWallRawSim::setNHit(Short_t anHit){
nHit=anHit;
}
#endif /* HWALLRAWSIM_H */
Last change: Sat May 22 13:17:47 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.