#ifndef HTOFHITSIM_H
#define HTOFHITSIM_H
#include "htofhit.h"
class HTofHitSim : public HTofHit {
protected:
Int_t nTrack1;
Int_t nTrack2;
public:
HTofHitSim(void) : nTrack1(-1), nTrack2(-1) {}
~HTofHitSim(void) {}
void clear(void);
inline void setNTrack1(const Int_t n) {nTrack1=n;}
inline void setNTrack2(const Int_t n) {nTrack2=n;}
inline void setLeftNTrack(const Int_t n) {nTrack1=n;}
inline void setRightNTrack(const Int_t n) {nTrack2=n;}
inline Int_t getNTrack1(void) const {return nTrack1;}
inline Int_t getNTrack2(void) const {return nTrack2;}
inline Int_t getLeftNTrack(void) const {return nTrack1;}
inline Int_t getRightNTrack(void) const {return nTrack2;}
ClassDef(HTofHitSim,1)
};
class HTofHitSimTmp : public HTofHitSim {
public:
ClassDef(HTofHitSimTmp,1)
};
#endif /* HTOFHITSIM_H */
Last change: Sat May 22 13:16:15 2010
Last generated: 2010-05-22 13:16
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.