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


#ifndef HRICHHITSIM_H
#define HRICHHITSIM_H

#include "hrichhit.h"

class HRichHitSim: public HRichHit {
public:
   HRichHitSim();
   virtual ~HRichHitSim() {}
//LF
   Short_t iRingPadNTrack1[256];//!
   Short_t iRingPadNTrack2[256];//!
   Short_t iRingTrack[256];//!
   Char_t iRingFlag[256];//!
// for each ring maximally 3 tracks are stored.
   Int_t track1, track2, track3;
   Int_t weigTrack1, weigTrack2, weigTrack3;
// flag that distinguishes Photons from IP
   Int_t flag1, flag2, flag3;
   HRichHitSim& operator=(const HRichHitSim& source) {
      HRichHit::operator=(source);
      return *this;
   }
   HRichHitSim& operator=(const HRichHit& source) {
      HRichHit::operator=(source);
      return *this;
   }
//LF
   ClassDef(HRichHitSim, 1)
};

#endif /* !HRICHHITSIM_H */
 hrichhitsim.h:1
 hrichhitsim.h:2
 hrichhitsim.h:3
 hrichhitsim.h:4
 hrichhitsim.h:5
 hrichhitsim.h:6
 hrichhitsim.h:7
 hrichhitsim.h:8
 hrichhitsim.h:9
 hrichhitsim.h:10
 hrichhitsim.h:11
 hrichhitsim.h:12
 hrichhitsim.h:13
 hrichhitsim.h:14
 hrichhitsim.h:15
 hrichhitsim.h:16
 hrichhitsim.h:17
 hrichhitsim.h:18
 hrichhitsim.h:19
 hrichhitsim.h:20
 hrichhitsim.h:21
 hrichhitsim.h:22
 hrichhitsim.h:23
 hrichhitsim.h:24
 hrichhitsim.h:25
 hrichhitsim.h:26
 hrichhitsim.h:27
 hrichhitsim.h:28
 hrichhitsim.h:29
 hrichhitsim.h:30
 hrichhitsim.h:31
 hrichhitsim.h:32
 hrichhitsim.h:33
 hrichhitsim.h:34
 hrichhitsim.h:35
 hrichhitsim.h:36
 hrichhitsim.h:37
 hrichhitsim.h:38
 hrichhitsim.h:39
 hrichhitsim.h:40
 hrichhitsim.h:41
 hrichhitsim.h:42
 hrichhitsim.h:43
 hrichhitsim.h:44
 hrichhitsim.h:45
 hrichhitsim.h:46
 hrichhitsim.h:47
 hrichhitsim.h:48