]> git.uio.no Git - u/mrichter/AliRoot.git/commitdiff
data members added: fGeom (ponter to Geometry) and fPlease (pointer to AliPHOSIndexTo...
authorschutz <schutz@f7af4fe6-9843-0410-8265-dc069ae4e863>
Fri, 21 Jul 2000 14:04:21 +0000 (14:04 +0000)
committerschutz <schutz@f7af4fe6-9843-0410-8265-dc069ae4e863>
Fri, 21 Jul 2000 14:04:21 +0000 (14:04 +0000)
PHOS/AliPHOSTrackSegmentMaker.cxx
PHOS/AliPHOSTrackSegmentMaker.h

index 7f91a6a84c40f956fb5ac84cfc50c800d4a70f45..eb9685e5effae8db7f3fb61ce2190039d4532097 100644 (file)
@@ -34,6 +34,7 @@
 
 #include "AliPHOSTrackSegmentMaker.h"
 #include "AliPHOSTrackSegment.h"
+#include "AliPHOSIndexToObject.h"
 #include "AliPHOSLink.h"
 #include "AliPHOSv0.h"
 #include "AliRun.h"
@@ -45,6 +46,9 @@ ClassImp( AliPHOSTrackSegmentMaker)
  AliPHOSTrackSegmentMaker:: AliPHOSTrackSegmentMaker() : fNTrackSegments(0)
 {
   // ctor
+  fGeom = AliPHOSGeometry::GetInstance() ;
+  fPlease = AliPHOSIndexToObject::GetInstance() ; 
+
 }
 
 
index f8e8cb8461f644824eb993e4b8544e680487cda6..367738bdc5a119f7fc6421bbefa05eab2606dc80 100644 (file)
@@ -21,6 +21,7 @@
 #include "TObjArray.h"
 #include "AliPHOSDigit.h"
 #include "AliPHOSRecPoint.h"
+#include "AliPHOSIndexToObject.h"
 #include "AliPHOSTrackSegment.h"
 
 class  AliPHOSTrackSegmentMaker : public TObject {
@@ -43,9 +44,11 @@ public:
   
  protected:
   
-  Int_t fNTrackSegments ; // number of track segments found 
-  
-  ClassDef( AliPHOSTrackSegmentMaker,1)  // Algorithm class to make PHOS track segments (Base Class)
+  Int_t                  fNTrackSegments ; // number of track segments found 
+  AliPHOSGeometry      * fGeom ;           // pointer to PHOS geometry  
+  AliPHOSIndexToObject * fPlease ;         //
+
+  ClassDef( AliPHOSTrackSegmentMaker,1)    // Algorithm class to make PHOS track segments (Base Class)
 
 };