#include "AliPHOSTrackSegmentMaker.h"
#include "AliPHOSTrackSegment.h"
+#include "AliPHOSIndexToObject.h"
#include "AliPHOSLink.h"
#include "AliPHOSv0.h"
#include "AliRun.h"
AliPHOSTrackSegmentMaker:: AliPHOSTrackSegmentMaker() : fNTrackSegments(0)
{
// ctor
+ fGeom = AliPHOSGeometry::GetInstance() ;
+ fPlease = AliPHOSIndexToObject::GetInstance() ;
+
}
#include "TObjArray.h"
#include "AliPHOSDigit.h"
#include "AliPHOSRecPoint.h"
+#include "AliPHOSIndexToObject.h"
#include "AliPHOSTrackSegment.h"
class AliPHOSTrackSegmentMaker : public TObject {
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)
};