]> git.uio.no Git - u/mrichter/AliRoot.git/blobdiff - PHOS/AliPHOSTrackSegmentMakerv1.h
the MIXT geometry (IHEP+GPS2) has been introduced
[u/mrichter/AliRoot.git] / PHOS / AliPHOSTrackSegmentMakerv1.h
index 441e091730f848e19423fcf0ebc7719f89b0e2e1..f193b69e073e31a830490d143d20c8ae3693663c 100644 (file)
@@ -5,13 +5,12 @@
 
 /* $Id$ */
 
-///////////////////////////////////////////////////
-//  Track Segment Maker class for PHOS           //
-//  Version SUBATECH                             //
-//  Author Dmitri Peressounko RRC Ki             //
-//     comment: finds pairs of clusters EMC+PPSD //  
-//              performs unfolding.              //
-///////////////////////////////////////////////////
+//_________________________________________________________________________
+// Implementation version 1 of algorithm class to construct PHOS track segments
+// Associates EMC and PPSD clusters
+// Unfolds the EMC cluster   
+//                  
+//*-- Author: Dmitri Peressounko (RRC Ki & SUBATECH)
 
 // --- ROOT system ---
 
@@ -31,35 +30,69 @@ class  AliPHOSTrackSegmentMakerv1 : public AliPHOSTrackSegmentMaker {
 public:
 
   AliPHOSTrackSegmentMakerv1() ;                     
+  AliPHOSTrackSegmentMakerv1(const AliPHOSTrackSegmentMakerv1 & tsm) {
+    // cpy ctor: no implementation yet
+    // requested by the Coding Convention
+    assert(0==1) ; 
+  }
+   
   virtual ~ AliPHOSTrackSegmentMakerv1() ; // dtor
   
   Bool_t  FindFit(AliPHOSEmcRecPoint * emcRP, int * MaxAt, Float_t * maxAtEnergy, 
                  Int_t NPar, Float_t * FitParametres) ; //Used in UnfoldClusters, calls TMinuit
-  void    FillOneModule(DigitsList * Dl, RecPointsList * emcIn, TObjArray * emcOut, RecPointsList * ppsdIn, 
-                       TObjArray * ppsdOutUp, TObjArray * ppsdOutLow, Int_t &PHOSModule, Int_t & emcStopedAt, 
-                       Int_t & ppsdStopedAt) ; // Unfolds clusters and fills temporary arrais   
+  void    FillOneModule(AliPHOSRecPoint::RecPointsList * emcIn, 
+                       TArrayI * emcOut, 
+                       AliPHOSRecPoint::RecPointsList * ppsdIn, 
+                       TArrayI * ppsdOutUp, 
+                       TArrayI * ppsdOutLow, 
+                       Int_t &PHOSModule, 
+                       Int_t & emcStopedAt, 
+                       Int_t & ppsdStopedAt) ; // Fills temporary arrais with clusters from one module  
   Float_t GetDistanceInPHOSPlane(AliPHOSEmcRecPoint * EmcClu , AliPHOSPpsdRecPoint * Ppsd , Bool_t & TooFar ) ; // see R0
 
-  void    MakeLinks(TObjArray * EmcRecPoints, TObjArray * PpsdRecPointsUp, TObjArray * PpsdRecPointsLow, 
+  void    MakeLinks(TArrayI * EmcRecPoints, TArrayI * PpsdRecPointsUp, TArrayI * PpsdRecPointsLow, 
                    TClonesArray * LinkLowArray, TClonesArray *LinkUpArray) ; //Evaluates distances(links) between EMC and PPSD
-  void    MakePairs(TObjArray * EmcRecPoints, TObjArray * PpsdRecPointsUp, TObjArray * PpsdRecPointsLow, 
-                   TClonesArray * LinkLowArray, TClonesArray * LinkUpArray, TrackSegmentsList * trsl) ; 
-                    //Finds pairs(triplets) with smallest link
-  void    MakeTrackSegments(DigitsList * DL, RecPointsList * emcl, RecPointsList * ppsdl, TrackSegmentsList * trsl ) ; // does the job
+  void    MakePairs(TArrayI * EmcRecPoints, 
+                   TArrayI * PpsdRecPointsUp, 
+                   TArrayI * PpsdRecPointsLow, 
+                   TClonesArray * LinkLowArray, 
+                   TClonesArray * LinkUpArray, 
+                   AliPHOSTrackSegment::TrackSegmentsList * trsl) ; //Finds pairs(triplets) with smallest link
+  void    MakeTrackSegments(DigitsList * DL, 
+                           AliPHOSRecPoint::RecPointsList * emcl, 
+                           AliPHOSRecPoint::RecPointsList * ppsdl, 
+                           AliPHOSRecPoint::RecPointsList * cpvl, 
+                           AliPHOSTrackSegment::TrackSegmentsList * trsl ) ; // does the job
+  virtual void MakeTrackSegmentsCPV(DigitsList * DL, 
+                                AliPHOSRecPoint::RecPointsList * emcl, 
+                                AliPHOSRecPoint::RecPointsList * ppsdl ); // just unfold EMC and CPV clusters
+  virtual void SetMaxEmcPpsdDistance(Float_t r){ fR0 = r ;}
   virtual void    SetUnfoldFlag() { fUnfoldFlag = kTRUE ; } ; 
   static Double_t ShowerShape(Double_t r) ; // Shape of shower used in unfolding; class member function (not object member function)
-  void    UnfoldClusters(DigitsList * DL, RecPointsList * emcIn, AliPHOSEmcRecPoint * iniEmc, Int_t Nmax, 
-                        int * maxAt, Float_t * maxAtEnergy, TObjArray * emclist) ; //Unfolds overlaping clusters using TMinuit package
-  virtual void    UnSetUnfoldFlag() { fUnfoldFlag = kFALSE ; } ; 
+  void    UnfoldAll(DigitsList * Dl, AliPHOSRecPoint::RecPointsList * emcIn) ; 
+                                             // Unfolds and sorts all EMC clusters
+  void  UnfoldClusters(DigitsList * DL, 
+                      AliPHOSRecPoint::RecPointsList * emcIn, 
+                      AliPHOSEmcRecPoint * iniEmc, 
+                      Int_t Nmax, 
+                      int * maxAt, 
+                      Float_t * maxAtEnergy ) ; //Unfolds overlaping clusters using TMinuit package
+  virtual void UnsetUnfoldFlag() { fUnfoldFlag = kFALSE ; } 
+
+  AliPHOSTrackSegmentMakerv1 & operator = (const AliPHOSTrackSegmentMakerv1 & rvalue)  {
+    // assignement operator requested by coding convention
+    // but not needed
+    assert(0==1) ;
+    return *this ; 
+  }
 
 private:
 
-  Float_t fDelta ;    // parameter used for sorting
-  Float_t fR0 ;       // Maximal distance between EMC and PPSD clusters of one Track Segment in module plane
-  TMinuit * fMinuit ; // Minuit object needed by cluster unfolding
-  Bool_t fUnfoldFlag ;// Directive to unfold or not the clusters in case of multiple maxima
+  Float_t fDelta ;     // parameter used for sorting
+  Float_t fR0 ;        // Maximum distance between a EMC RecPoint and a PPSD RecPoint   
+  Bool_t fUnfoldFlag ; // Directive to unfold or not the clusters in case of multiple maxima
 
-  ClassDef( AliPHOSTrackSegmentMakerv1,1)  // track segment maker implementation , version 1
+  ClassDef( AliPHOSTrackSegmentMakerv1,1)  // Implementation version 1 of algorithm class to make PHOS track segments 
 
 };