]> git.uio.no Git - u/mrichter/AliRoot.git/blobdiff - TRD/AliTRDpoints.h
Remove dependency on f2c
[u/mrichter/AliRoot.git] / TRD / AliTRDpoints.h
index 64662c7fafd1cbd20c63ff75bed4e9f30ef48040..67ec7bc8e8ec7c93f1eba15b2aab508579466d4d 100644 (file)
@@ -5,6 +5,13 @@
 
 /* $Id$ */
 
+////////////////////////////////////////////////////////////////////////////
+//                                                                        //
+//  This class contains the TRD points for the ALICE event display.       //
+//  Used to seperately display dEdx and TR photon hits.                   //
+//                                                                        //
+////////////////////////////////////////////////////////////////////////////
+
 #include "AliPoints.h"
 
 class AliTRDpoints : public AliPoints {
@@ -17,20 +24,20 @@ class AliTRDpoints : public AliPoints {
   virtual ~AliTRDpoints();
   AliTRDpoints &operator=(const AliTRDpoints &p);
 
-  virtual void           Copy(TObject &p);   
-  virtual void           Draw(Option_t *option);
+  virtual void     Copy(TObject &p) const;   
+  virtual void     Draw(Option_t *option);
 
-  virtual void           SetTRpoints(Int_t n, Float_t *coor);
+  virtual void     SetTRpoints(Int_t n, Float_t *coor);
 
  protected:
 
   enum { kNTRpoints = 75 };
 
-  Float_t          fTRpoints[kNTRpoints];       //  The hits from TR photons
-  Int_t            fNTRpoints;                  //  The number of TR photon hits
+          Float_t  fTRpoints[kNTRpoints];       //  The hits from TR photons
+          Int_t    fNTRpoints;                  //  The number of TR photon hits
   TPolyMarker3D   *fTRpolyMarker;               //! Polymarker to draw the photon hits
   
-  ClassDef(AliTRDpoints,1)                      // Class to draw TRD hits 
+  ClassDef(AliTRDpoints,1)                      //  Class to draw TRD hits 
 
 };
 #endif