#ifndef HMDCCLUSINFSIM_H
#define HMDCCLUSINFSIM_H
#include "hmdcclusinf.h"
class HMdcClusInfSim : public HMdcClusInf {
protected:
Short_t nTracks;
Int_t listTr[5];
Short_t nTimes[5];
public:
HMdcClusInfSim(void) {nTracks=-1;}
~HMdcClusInfSim() {}
void setTracksList(Int_t nTr, const Int_t* list, const Short_t* nTm);
void clear(void) {nTracks=-1;}
virtual void print(void) const;
Short_t getNTracks(void) const {return nTracks;}
Int_t getTrack(Int_t indx) const {
return (indx>=0 && indx<nTracks) ? listTr[indx] : -1;
}
Short_t getNTimesInTrack(Int_t indx) const {
return (indx<0 || indx>=nTracks) ? 0:nTimes[indx];
}
ClassDef(HMdcClusInfSim,1)
};
#endif
Last change: Sat May 22 13:01:06 2010
Last generated: 2010-05-22 13:01
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.