]> git.uio.no Git - u/mrichter/AliRoot.git/blobdiff - ITS/AliITSmodule.h
Cleaning up a lot
[u/mrichter/AliRoot.git] / ITS / AliITSmodule.h
index 43772c2144c89014c8e33ce0501d0695c31ddcc5..3b22afa954f1e7de6f4d8e08a62bf933856f5235 100644 (file)
@@ -7,10 +7,10 @@
 
 #include <TObject.h>
 #include <TObjArray.h>
+#include <TArrayI.h>  // used in inline functions GetHitTrackIndex,GetHitHitIndex, and GetHitTrackAndHitIndex.
 
 class AliITS;
 class AliITShit;
-class TArrayI;
 
 
 class AliITSmodule:public TObject{
@@ -148,12 +148,13 @@ class AliITSmodule:public TObject{
     //________________________________________________________________
     //
     AliITS       *fITS;       // Pointer to ITS detector
-    Int_t        fIndex;      //Index of this module in ITSmodules TObjectArray
+    Int_t         fIndex;      //Index of this module in ITSmodules TObjectArray
     TObjArray    *fHitsM;     // Pointer to list of hits on this module
-    TArrayI      *fTrackIndex,*fHitIndex; // track index, hit index
-
-    ClassDef(AliITSmodule,1) // Copy the hits into a more useful order
+    TArrayI      *fTrackIndex; // track index
+    TArrayI      *fHitIndex; // hit index
 
+    ClassDef(AliITSmodule,0) // Copy the hits into a more useful order
+       // Version set to zero so that we do not write out this class.
 };
 
 #endif