]> git.uio.no Git - u/mrichter/AliRoot.git/blob - MUON/AliMUONClusterFinderMLEM.h
- Removed obsolete functions
[u/mrichter/AliRoot.git] / MUON / AliMUONClusterFinderMLEM.h
1 #ifndef ALIMUONCLUSTERFINDERMLEM_H
2 #define ALIMUONCLUSTERFINDERMLEM_H
3 /* Copyright(c) 1998-1999, ALICE Experiment at CERN, All rights reserved. *
4  * See cxx source for full Copyright notice                               */
5
6 /* $Id$ */
7
8 /// \ingroup rec
9 /// \class AliMUONClusterFinderMLEM
10 /// \brief Cluster finder in MUON arm of ALICE
11 ///
12 //  Author Alexander Zinchenko, JINR Dubna; Laurent Aphecetche, SUBATECH
13 //
14
15 class TH2D;
16 class TClonesArray;
17 class TMinuit;
18
19 #ifndef ROOT_TObjArray
20 #  include "TObjArray.h"
21 #endif
22 #ifndef ROOT_TVector2
23 #  include "TVector2.h"
24 #endif
25
26 class AliMUONPad;
27
28 #include "AliMUONVClusterFinder.h"
29
30 class AliMUONClusterSplitterMLEM;
31
32 class AliMUONClusterFinderMLEM : public AliMUONVClusterFinder
33 {
34 public:
35   AliMUONClusterFinderMLEM(Bool_t plot, AliMUONVClusterFinder* clusterFinder); // Constructor
36   virtual ~AliMUONClusterFinderMLEM(); // Destructor
37
38   virtual Bool_t Prepare(const AliMpVSegmentation* segmentations[2],
39                          const AliMUONVDigitStore& digitStore);
40   
41   virtual AliMUONCluster* NextCluster();
42   
43   virtual void Print(Option_t* opt="") const;
44
45   virtual void Paint(Option_t* opt="");
46
47   // Status flags for pads
48   static const Int_t fgkZero; ///< pad "basic" state
49   static const Int_t fgkMustKeep; ///< do not kill (for pixels)
50   static const Int_t fgkUseForFit; ///< should be used for fit
51   static const Int_t fgkOver; ///< processing is over
52   static const Int_t fgkModified; ///< modified pad charge 
53   static const Int_t fgkCoupled; ///< coupled pad  
54   
55 private:
56   /// Not implemented
57   AliMUONClusterFinderMLEM(const AliMUONClusterFinderMLEM& rhs);
58   /// Not implemented
59   AliMUONClusterFinderMLEM& operator=(const AliMUONClusterFinderMLEM& rhs);
60
61   Bool_t WorkOnPreCluster();
62
63   /// Check precluster to simplify it (if possible), and return the simplified cluster
64   AliMUONCluster* CheckPrecluster(const AliMUONCluster& cluster); 
65   AliMUONCluster* CheckPreclusterTwoCathodes(AliMUONCluster* cluster); 
66   
67   /// Checks whether a pad and a pixel have an overlapping area.
68   Bool_t Overlap(const AliMUONPad& pad, const AliMUONPad& pixel); 
69   
70   /// build array of pixels
71   void BuildPixArray(AliMUONCluster& cluster); 
72   void BuildPixArrayOneCathode(AliMUONCluster& cluster); 
73   void PadOverHist(Int_t idir, Int_t ix0, Int_t iy0, AliMUONPad *pad);
74
75   void RemovePixel(Int_t i);
76   
77   AliMUONPad* Pixel(Int_t i) const;
78   
79   Bool_t MainLoop(AliMUONCluster& cluster, Int_t iSimple); // repeat MLEM algorithm until pixels become sufficiently small
80   
81   void   Mlem(AliMUONCluster& cluster, Double_t *coef, Double_t *probi, Int_t nIter); // use MLEM for cluster finding
82   
83   void   FindCOG(TH2D *mlem, Double_t *xyc); // find COG position around maximum bin
84   Int_t  FindNearest(AliMUONPad *pixPtr0); // find nearest neighbouring pixel to the given one
85
86   Int_t FindLocalMaxima(TObjArray *pixArray, Int_t *localMax, Double_t *maxVal); // find local maxima 
87   void  FlagLocalMax(TH2D *hist, Int_t i, Int_t j, Int_t *isLocalMax); // flag local max
88   void  FindCluster(AliMUONCluster& cluster, Int_t *localMax, Int_t iMax); // find cluster around local max
89   void  AddVirtualPad(AliMUONCluster& cluster); // add virtual pads for some clusters (if necessary)
90   
91   void  PadsInXandY(AliMUONCluster& cluster, Int_t &nInX, Int_t &nInY) const; // get number of pads in X and Y
92
93   /// Process simple cluster
94   void Simple(AliMUONCluster& cluster); 
95   
96   void Plot(const char* outputfile);
97     
98   void ComputeCoefficients(AliMUONCluster& cluster, 
99                            Double_t* coef, Double_t* probi);
100   
101   void CheckOverlaps();
102   void AddBinSimple(TH2D *mlem, Int_t ic, Int_t jc);
103   void MaskPeaks(Int_t mask);
104
105 private:
106     
107   // Some constants
108   static const Double_t fgkZeroSuppression; ///< average zero suppression value
109   static const Double_t fgkDistancePrecision; ///< used to check overlaps and so on
110   static const TVector2 fgkIncreaseSize; ///< idem
111   static const TVector2 fgkDecreaseSize; ///< idem
112   
113   AliMUONVClusterFinder* fPreClusterFinder; //!< the pre-clustering worker
114   AliMUONCluster* fPreCluster; //!< current pre-cluster
115   TObjArray fClusterList; //!< clusters corresponding to the current pre-cluster
116   
117   Int_t fEventNumber; //!< current event being processed
118   Int_t fDetElemId; //!< current DE being processed
119   Int_t fClusterNumber; //!< current cluster number
120   
121   const AliMpVSegmentation *fSegmentation[2]; //!< new segmentation
122   
123   Int_t fCathBeg;               //!< starting cathode (for combined cluster / track reco)
124   Int_t fPadBeg[2];             //!< starting pads (for combined cluster / track reco)
125   
126   static     TMinuit* fgMinuit; //!< Fitter
127   
128   TObjArray* fPixArray; //!< collection of pixels
129   Int_t fDebug; //!< debug level
130   Bool_t fPlot; //!< whether we should plot thing (for debug only, quite slow!)
131   
132   AliMUONClusterSplitterMLEM* fSplitter; //!< helper class to go from pixel arrays to clusters
133   Int_t fNClusters; //!< total number of clusters
134   Int_t fNAddVirtualPads; //!< number of clusters for which we added virtual pads
135   
136   ClassDef(AliMUONClusterFinderMLEM,0) // cluster finder in MUON arm of ALICE
137 };
138
139 #endif