#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;
}

Last change: Sat May 22 13:09:04 2010
Last generated: 2010-05-22 13:09

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.