]> git.uio.no Git - u/mrichter/AliRoot.git/blob - MUON/AliMUONClusterFinderAZ.h
Additional protection in case of negative indexes. More investigation is needed
[u/mrichter/AliRoot.git] / MUON / AliMUONClusterFinderAZ.h
1 #ifndef ALIMUONCLUSTERFINDERAZ_H
2 #define ALIMUONCLUSTERFINDERAZ_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 AliMUONClusterFinderAZ
10 /// \brief Cluster finder in MUON arm of ALICE
11
12 class TH2D;
13 class TClonesArray;
14 class TMinuit;
15
16 class AliMUONVGeometryDESegmentation;
17 class AliMUONPixel;
18 class AliMUONClusterDrawAZ;
19 #include "AliMUONClusterFinderVS.h"
20 #include "TMatrixDfwd.h"
21
22 class AliMUONClusterFinderAZ : public AliMUONClusterFinderVS 
23 {
24 public:
25   AliMUONClusterFinderAZ(Bool_t draw = 0); // Constructor
26   virtual ~AliMUONClusterFinderAZ(); // Destructor
27
28   void     FindRawClusters(); // the same interface as for old cluster finder
29   void     EventLoop(Int_t nev = 0, Int_t ch = 0); // first event 
30   Bool_t   TestTrack(Int_t t) const; // test if track was selected
31   Int_t    GetNPads(Int_t cath) const { return fnPads[cath]; }
32   Int_t    GetIJ(Int_t indx, Int_t iPad) const { return fPadIJ[indx][iPad]; }
33   Float_t  GetXyq(Int_t indx, Int_t iPad) const { return fXyq[indx][iPad]; }
34   Float_t  GetZpad() { return fZpad; }
35   Bool_t GetUsed(Int_t cath, Int_t dig) const { return fUsed[cath][dig]; }
36   void SetUsed(Int_t cath, Int_t dig) { fUsed[cath][dig] = kTRUE; } // mark used digits
37   void SetUnused(Int_t cath, Int_t dig) { fUsed[cath][dig] = kFALSE; } // unmark digits
38   void SetReco(Int_t iReco) { fReco = iReco; } // set reco flag
39   void SetStart(Int_t iCath, Int_t iPad) { fCathBeg = iCath; fPadBeg[0] = fPadBeg[1] = 0; fPadBeg[fCathBeg] = iPad; } // start
40  
41 protected:
42   AliMUONClusterFinderAZ(const AliMUONClusterFinderAZ& rhs);
43   AliMUONClusterFinderAZ& operator=(const AliMUONClusterFinderAZ& rhs);
44
45  private:
46   // Some constants
47   static const Int_t fgkDim = 10000; // array size
48   static const Double_t fgkCouplMin; // threshold on coupling 
49   static const Double_t fgkZeroSuppression; // average zero suppression value
50   static const Double_t fgkSaturation; // average saturation level
51
52   static  AliMUONClusterFinderAZ* fgClusterFinder; // the ClusterFinderAZ instance
53
54   Int_t      fnPads[2];         // ! number of pads in the cluster on 2 cathodes
55   Float_t    fXyq[7][fgkDim];   // ! pad information
56   Int_t      fPadIJ[4][fgkDim]; // ! pad information
57   AliMUONVGeometryDESegmentation *fSegmentation[2]; // ! new segmentation
58   Float_t    fZpad;             // ! z-coordinate of the hit
59   Int_t      fNpar;             // ! number of fit parameters
60   Double_t   fQtot;             // ! total cluster charge
61   Int_t      fReco;             // ! !=0 if run reco with writing of reconstructed clusters 
62   Int_t fCathBeg;               // ! starting cathode (for combined cluster / track reco)
63   Int_t fPadBeg[2];             // ! starting pads (for combined cluster / track reco)
64
65   static     TMinuit* fgMinuit; // ! Fitter
66   Bool_t     fUsed[2][fgkDim]; // ! flags for used pads
67   AliMUONClusterDrawAZ *fDraw; // ! drawing object 
68   TObjArray* fPixArray; // ! collection of pixels
69   Int_t fnCoupled; // ! number of coupled clusters in precluster
70   Int_t fDebug; // ! debug level
71
72   // Functions
73
74   void   AddPad(Int_t cath, Int_t digit); // add a pad to the cluster
75   Bool_t Overlap(Int_t cath, AliMUONDigit *dig); // check if the pad from one cathode overlaps with a pad in the cluster on the other cathode
76   Bool_t Overlap(Float_t *xy1, Int_t iPad, Float_t *xy12, Int_t iSkip); // check if pads xy1 and iPad overlap and return overlap area
77   Bool_t CheckPrecluster(Int_t *nShown); // check precluster to simplify it (if possible)
78   void   BuildPixArray(); // build array of pixels
79   void   AdjustPixel(Float_t width, Int_t ixy); // adjust size of small pixels
80   void   AdjustPixel(Float_t wxmin, Float_t wymin); // adjust size of large pixels
81   Bool_t MainLoop(Int_t iSimple); // repeat MLEM algorithm until pixels become sufficiently small
82   void   Mlem(Double_t *coef, Double_t *probi, Int_t nIter); // use MLEM for cluster finding
83   void   FindCOG(TH2D *mlem, Double_t *xyc); // find COG position around maximum bin
84   Int_t  FindNearest(AliMUONPixel *pixPtr0); // find nearest neighbouring pixel to the given one
85   void   Split(TH2D *mlem, Double_t *coef); // steering function for pixels
86   void   AddBin(TH2D *mlem, Int_t ic, Int_t jc, Int_t mode, Bool_t* used, TObjArray *pix); // add a bin to the cluster
87   TObject* BinToPix(TH2D *mlem, Int_t jc, Int_t ic); // hist. bin-to-pixel
88   void   AddCluster(Int_t ic, Int_t nclust, TMatrixD *aijcluclu, Bool_t *used, Int_t *clustNumb, Int_t &nCoupled); // add a cluster to the group of coupled clusters
89   Double_t MinGroupCoupl(Int_t nCoupled, Int_t *clustNumb, TMatrixD *aijcluclu, Int_t *minGroup); // find group of cluster with min. coupling to others
90   Int_t  SelectPad(Int_t nCoupled, Int_t nForFit, Int_t *clustNumb, Int_t *clustFit, TMatrixD *aijcluclu); //select pads for fit
91   void   Merge(Int_t nForFit, Int_t nCoupled, Int_t *clustNumb, Int_t *clustFit, TObjArray **clusters, TMatrixD *aijcluclu, TMatrixD *aijclupad); // merge clusters
92   Int_t  Fit(Int_t iSimple, Int_t nfit, Int_t *clustFit, TObjArray **clusters, Double_t *parOk); // do the fitting 
93   void  UpdatePads(Int_t nfit, Double_t *par); // subtract fitted charges from pads
94   void  AddRawCluster(Double_t x, Double_t y, Double_t qTot, Double_t fmin, Int_t nfit, Int_t *tracks, Double_t sigx, Double_t sigy, Double_t dist); // add new reconstructed cluster
95   Int_t FindLocalMaxima(TObjArray *pixArray, Int_t *localMax, Double_t *maxVal); // find local maxima 
96   void  FlagLocalMax(TH2D *hist, Int_t i, Int_t j, Int_t *isLocalMax); // flag local max
97   void  FindCluster(Int_t *localMax, Int_t iMax); // find cluster around local max
98   void  AddVirtualPad(); // add virtual pads for some clusters (if necessary)
99   void  PadsInXandY(Int_t &nInX, Int_t &nInY); // get number of pads in X and Y
100   // This function is used for fitting
101   void  Fcn1(Int_t &npar, Double_t *gin, Double_t &f, Double_t *par, Int_t iflag);
102   void Simple(); // process simple cluster
103
104   void Errors(AliMUONRawCluster *clus); // correct coordinates and eval. errors
105   void Errors(Int_t ny, Int_t nx, Int_t iby, Int_t ibx, Double_t fmin,
106               Double_t wy, Double_t wx, Int_t iover, 
107               Double_t dyc, Double_t dxc, Double_t qtot, 
108               Double_t &yrec, Double_t &xrec, Double_t &erry, Double_t &errx);
109
110   // Dummy methods for overloading warnings
111   void FindCluster(int, int, int, AliMUONRawCluster&) {return;}
112   void FindLocalMaxima(AliMUONRawCluster*) {return;}
113   void Split(AliMUONRawCluster*) {return;}
114   void AddRawCluster(AliMUONRawCluster&) {return;}
115
116 ClassDef(AliMUONClusterFinderAZ,0) // cluster finder in MUON arm of ALICE
117 };
118
119 #endif