]> git.uio.no Git - u/mrichter/AliRoot.git/blobdiff - RICH/AliRICHPoints.h
Smaller changes
[u/mrichter/AliRoot.git] / RICH / AliRICHPoints.h
index 8ac31570a440876b4545a488afa100620fcd3c1b..64c25e532323e51205cc55d627ac45ef9546917d 100644 (file)
@@ -1,5 +1,5 @@
-#ifndef AliRICHPoints_H
-#define AliRICHPoints_H
+#ifndef ALIRICHPOINTS_H
+#define ALIRICHPOINTS_H
 
 /* Copyright(c) 1998-1999, ALICE Experiment at CERN, All rights reserved. *
  * See cxx source for full Copyright notice                               */
 #include <TMarker3DBox.h>
 #include "AliRICH.h"
 #include "AliPoints.h"
+class AliRICHDigit;
 
 class AliRICHPoints : public AliPoints {
-protected:
-  Int_t            fIndex;            // Particle number in AliRun::fParticles
-  Int_t            fHitIndex;         // Link to hit number 
-  Int_t            fTrackIndex;       // Link to track number 
-  Int_t            fDigitIndex;       // Link to digit 
-  TMarker3DBox     *fMarker[3];       // pointer to  associated 3D-marker
 public:
   AliRICHPoints();
   AliRICHPoints(Int_t npoints);
@@ -37,13 +32,24 @@ public:
   virtual void          DumpHit(); // *MENU*
   virtual void          InspectDigit(); // *MENU*
   virtual void          DumpDigit(); // *MENU*
-  virtual void          GetCenterOfGravity(); // *MENU*
   virtual void          ShowRing(Int_t highlight); // *MENU*
   virtual void          SetHitIndex(Int_t hitindex) {fHitIndex = hitindex;}
   virtual void          SetTrackIndex(Int_t trackindex) {fTrackIndex = trackindex;}
   virtual void          SetDigitIndex(Int_t digitindex) {fDigitIndex = digitindex;}
   virtual void          Set3DMarker(Int_t i,TMarker3DBox *marker) {fMarker[i] = marker;}  
   virtual void          SetParticle(Int_t index) {fIndex = index;}
+ protected:
+  Int_t            fHitIndex;         // Link to hit number 
+  Int_t            fTrackIndex;       // Link to track number 
+  Int_t            fDigitIndex;       // Link to digit 
+  TMarker3DBox     *fMarker[3];       // pointer to  associated 3D-marker
+
   ClassDef(AliRICHPoints,1) //Class to draw detector clusters (is PolyMarker3D)
 };
 #endif
+
+
+
+
+
+