ROOT logo
//////////////////////////////////////////////////////////////////////////////
//
// $Id: $
//
//*-- Author  : RICH team member
//*-- Revised : Martin Jurkovic <martin.jurkovic@ph.tum.de> 2010
//
//_HADES_CLASS_DESCRIPTION
//////////////////////////////////////////////////////////////////////////////
//
//  HRichHitCandidate
//
//
//////////////////////////////////////////////////////////////////////////////


#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;
}
 hrichhitcandidate.cc:1
 hrichhitcandidate.cc:2
 hrichhitcandidate.cc:3
 hrichhitcandidate.cc:4
 hrichhitcandidate.cc:5
 hrichhitcandidate.cc:6
 hrichhitcandidate.cc:7
 hrichhitcandidate.cc:8
 hrichhitcandidate.cc:9
 hrichhitcandidate.cc:10
 hrichhitcandidate.cc:11
 hrichhitcandidate.cc:12
 hrichhitcandidate.cc:13
 hrichhitcandidate.cc:14
 hrichhitcandidate.cc:15
 hrichhitcandidate.cc:16
 hrichhitcandidate.cc:17
 hrichhitcandidate.cc:18
 hrichhitcandidate.cc:19
 hrichhitcandidate.cc:20
 hrichhitcandidate.cc:21
 hrichhitcandidate.cc:22
 hrichhitcandidate.cc:23
 hrichhitcandidate.cc:24
 hrichhitcandidate.cc:25
 hrichhitcandidate.cc:26
 hrichhitcandidate.cc:27
 hrichhitcandidate.cc:28
 hrichhitcandidate.cc:29
 hrichhitcandidate.cc:30
 hrichhitcandidate.cc:31
 hrichhitcandidate.cc:32
 hrichhitcandidate.cc:33
 hrichhitcandidate.cc:34
 hrichhitcandidate.cc:35
 hrichhitcandidate.cc:36
 hrichhitcandidate.cc:37
 hrichhitcandidate.cc:38
 hrichhitcandidate.cc:39
 hrichhitcandidate.cc:40
 hrichhitcandidate.cc:41
 hrichhitcandidate.cc:42
 hrichhitcandidate.cc:43
 hrichhitcandidate.cc:44
 hrichhitcandidate.cc:45
 hrichhitcandidate.cc:46
 hrichhitcandidate.cc:47
 hrichhitcandidate.cc:48
 hrichhitcandidate.cc:49
 hrichhitcandidate.cc:50