ROOT logo
//////////////////////////////////////////////////////////////////////////////
//
// $Id: $
//
//*-- Author  : Laura Fabbietti <Laura.Fabbietti@ph.tum.de>
//*-- Revised : Martin Jurkovic <martin.jurkovic@ph.tum.de> 2010
//
//_HADES_CLASS_DESCRIPTION
//////////////////////////////////////////////////////////////////////////////
//
//  HRichTrack
//
//  This class stores the track numbers of the particles
//  that hit the RICH.
//  For each particle it contains the corresponding track number,
//  the address of the fired pad and a flag that distinguishes
//  photons and charged particles.
//  In the categories catRichGeantRaw and catRichGeantRaw+1
//  the particle track number is stored in the case that a direct
//  hit has occurred; if a photon hits the RICH, its parent track number
//  is stored, therefore we need a flag to distinguish the two cases.
//  The class is sortable by the pad address.
//
//////////////////////////////////////////////////////////////////////////////


#include "hrichtrack.h"

ClassImp(HRichTrack)

HRichTrack::HRichTrack()
{
   fEventNr = -1;
   fTrackNr = -1;
   fAddress = -1;
   fFlag    = -1;
}
 hrichtrack.cc:1
 hrichtrack.cc:2
 hrichtrack.cc:3
 hrichtrack.cc:4
 hrichtrack.cc:5
 hrichtrack.cc:6
 hrichtrack.cc:7
 hrichtrack.cc:8
 hrichtrack.cc:9
 hrichtrack.cc:10
 hrichtrack.cc:11
 hrichtrack.cc:12
 hrichtrack.cc:13
 hrichtrack.cc:14
 hrichtrack.cc:15
 hrichtrack.cc:16
 hrichtrack.cc:17
 hrichtrack.cc:18
 hrichtrack.cc:19
 hrichtrack.cc:20
 hrichtrack.cc:21
 hrichtrack.cc:22
 hrichtrack.cc:23
 hrichtrack.cc:24
 hrichtrack.cc:25
 hrichtrack.cc:26
 hrichtrack.cc:27
 hrichtrack.cc:28
 hrichtrack.cc:29
 hrichtrack.cc:30
 hrichtrack.cc:31
 hrichtrack.cc:32
 hrichtrack.cc:33
 hrichtrack.cc:34
 hrichtrack.cc:35
 hrichtrack.cc:36
 hrichtrack.cc:37