#include "hrichhitcandidate.h"

ClassImp(HRichHitCandidate)


 HRichHitCandidate::HRichHitCandidate() {
 fX = 0;
 fY = 0;
 fA = 0;
 fPadLabel = 0;
 fMaxLabel = 0;
}

 HRichHitCandidate::HRichHitCandidate(const Int_t x, const Int_t y, const Int_t a, 
                                     const Int_t p, const Int_t l) {
 fX = x;
 fY = y;
 fA = a;
 fPadLabel = p;
 fMaxLabel = l;
}

 HRichHitCandidate::~HRichHitCandidate() {}

 void HRichHitCandidate::Reset() {
 fX = 0;
 fY = 0;
 fA = 0;
 fPadLabel = 0;
 fMaxLabel = 0;
}


ROOT page - Class index - Class Hierarchy - Top of the page

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.