]> git.uio.no Git - u/mrichter/AliRoot.git/blobdiff - TPC/AliTPCtrackerMI.h
DQM configure file
[u/mrichter/AliRoot.git] / TPC / AliTPCtrackerMI.h
index c7aae305fc147e398c7813342a47f1be62db4eb4..2350e0f1505d57ad1f23ece5ddb7d954e57cdf51 100644 (file)
@@ -13,6 +13,7 @@
 //   Origin: 
 //-------------------------------------------------------
 
+#include <TArrayI.h>
 #include "AliTracker.h"
 #include "AliTPCreco.h"
 #include "AliTPCclusterMI.h"
@@ -23,11 +24,14 @@ class TFile;
 class AliTPCParam;
 class AliTPCseed;
 class AliTPCTrackerPoint;
-class AliESDEvent;   
+class AliESDEvent;
+class AliESDtrack;
 class TTree;
 class AliESDkink;
 class TTreeSRedirector;
 class AliTrackPoint;
+class AliDCSSensorArray;
+class AliDCSSensor;
 
 
 
@@ -43,6 +47,7 @@ public:
   virtual Int_t LoadClusters (TTree * const tree);
   virtual Int_t LoadClusters (const TObjArray * arr); // another input
   virtual Int_t LoadClusters (const TClonesArray * arr); // another input
+  virtual Int_t PostProcess(AliESDEvent *esd); 
   Int_t  LoadClusters();
   void   UnloadClusters();
   Int_t LoadInnerSectors();
@@ -102,9 +107,13 @@ public:
    Double_t F3n(Double_t x1,Double_t y1, Double_t x2,Double_t y2, Double_t z1,Double_t z2, 
                 Double_t c) const; 
    Bool_t GetProlongation(Double_t x1, Double_t x2, Double_t x[5], Double_t &y, Double_t &z) const;
-
+   //
+   void ResetSeedsPool();
+   void MarkSeedFree( TObject* seed );
+   TObject *&NextFreeSeed();
+   //
  public:
-
+   void SetUseHLTClusters(Int_t useHLTClusters) {fUseHLTClusters = useHLTClusters;} // set usage from HLT clusters from rec.C options
 
    Float_t OverlapFactor(AliTPCseed * s1, AliTPCseed * s2, Int_t &sum1, Int_t &sum2);
    void  SignShared(AliTPCseed * s1, AliTPCseed * s2);
@@ -112,10 +121,10 @@ public:
 
    void  RemoveUsed2(TObjArray * arr, Float_t factor1, Float_t factor2, Int_t minimal);
 
-   void  StopNotActive(const TObjArray * arr, Int_t row0, Float_t th0, Float_t th1, Float_t th2) const;
-   void  StopNotActive(AliTPCseed * seed, Int_t row0, Float_t th0, Float_t th1, Float_t th2) const;
    Int_t AcceptCluster(AliTPCseed * seed, AliTPCclusterMI * cluster);
 
+   Bool_t IsTPCHVDipEvent(AliESDEvent const *esdEvent);
+
 private:
   Bool_t IsFindable(AliTPCseed & t);
   AliTPCtrackerMI(const AliTPCtrackerMI& r);           //dummy copy constructor
@@ -160,13 +169,13 @@ private:
    TObjArray * Tracking(Int_t seedtype, Int_t i1, Int_t i2, Float_t cuts[4], Float_t dy=-1, Int_t dsec=0);
    TObjArray * Tracking();
    TObjArray * TrackingSpecial();
-   void SumTracks(TObjArray *arr1,TObjArray *&arr2) const;
+   void SumTracks(TObjArray *arr1,TObjArray *&arr2);
    void PrepareForBackProlongation(const TObjArray *const arr, Float_t fac) const;
    void PrepareForProlongation(TObjArray *const arr, Float_t fac) const;
 
    Int_t UpdateTrack(AliTPCseed *t, Int_t accept); //update trackinfo
 
-   void MakeBitmaps(AliTPCseed *t);
+   void MakeESDBitmaps(AliTPCseed *t, AliESDtrack *esd);
 
    const Int_t fkNIS;        //number of inner sectors
    AliTPCtrackerSector *fInnerSec;  //array of inner sectors;
@@ -187,13 +196,19 @@ private:
    TObjArray *fSeeds;                  //array of track seeds
    Int_t fIteration;                   // indicate iteration - 0 - froward -1 back - 2forward - back->forward
    //   TObjArray * fTrackPointPool;        // ! pool with track points
-   //   TObjArray * fSeedPool;              //! pool with seeds
    Double_t fXRow[200];                // radius of the pad row
    Double_t fYMax[200];                // max y for given pad row
    Double_t fPadLength[200];                // max y for given pad row
    const AliTPCParam *fkParam;          //pointer to the parameters
    TTreeSRedirector *fDebugStreamer;     //!debug streamer
-   ClassDef(AliTPCtrackerMI,2) 
+   Int_t  fUseHLTClusters;              // use HLT clusters instead of offline clusters
+   //
+   TClonesArray* fSeedsPool;            //! pool of seeds
+   TArrayI fFreeSeedsID;                //! array of ID's of freed seeds
+   Int_t fNFreeSeeds;                   //! number of seeds freed in the pool
+   Int_t fLastSeedID;                   //! id of the pool seed on which is returned by the NextFreeSeed method
+   //
+   ClassDef(AliTPCtrackerMI,3) 
 };