#ifndef HGEANTPARTICLEINFO_H
#define HGEANTPARTICLEINFO_H
#define TRACKS 5
#include "TObject.h"
class HGeantParticleInfo: public TObject {
private:
Int_t geantTrackNr;
Int_t tracks[TRACKS];
Int_t corrCode[TRACKS];
public:
HGeantParticleInfo();
~HGeantParticleInfo();
HGeantParticleInfo(const HGeantParticleInfo& source);
virtual HGeantParticleInfo& operator=(const HGeantParticleInfo& source);
void dumpToStdout();
void reset();
Int_t getTrackNr();
Int_t getGeantTrackNr(){return geantTrackNr;};
Int_t getReconTrk(Int_t index) {return tracks[index];};
Int_t getCorrCode(Int_t index) {return corrCode[index];};
void setGeantTrackNr(Int_t index) {geantTrackNr = index;};
void setReconTrk(Int_t index, Int_t id) {tracks[index] = id;};
void setCorrCode(Int_t index, Int_t track){corrCode[index] = track;};
ClassDef(HGeantParticleInfo,1)
};
#endif /* !HGEANTPARTICLEINFO_H */
Last change: Sat May 22 12:56:01 2010
Last generated: 2010-05-22 12:56
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.