]> git.uio.no Git - u/mrichter/AliRoot.git/blame - HMPID/AliHMPIDReconHTA.h
Database as TH2F removed + minors.
[u/mrichter/AliRoot.git] / HMPID / AliHMPIDReconHTA.h
CommitLineData
5a3482a0 1#ifndef AliHMPIDReconHTA_h
2#define AliHMPIDReconHTA_h
3
4/* Copyright(c) 1998-1999, ALICE Experiment at CERN, All rights reserved. *
5 * See cxx source for full Copyright notice */
6
7//////////////////////////////////////////////////////////////////////////
8// //
9// AliHMPIDReconHTA //
10// //
11// HMPID class to perfom pattern recognition based on Hough transfrom //
12// //
13//////////////////////////////////////////////////////////////////////////
14
15
16#include <TTask.h> //base class
5a3482a0 17
18class TClonesArray; //CkovAngle()
19class AliESDtrack; //CkovAngle()
5a3482a0 20class AliHMPIDParam;//General pourpose
21
22class AliHMPIDReconHTA : public TTask
23{
24public :
25 AliHMPIDReconHTA();
26 virtual ~AliHMPIDReconHTA();
27
28// HTA hidden track algorithm
29 void InitVars (Int_t n); //init space for variables
aa00f952 30 void DeleteVars ()const; //delete variables
5a3482a0 31 void InitDatabase (); //initialization of database
170a4fc5 32 void FindBinDB (Double_t x,Double_t y,Int_t &binX,Int_t &binY); //find indices of DB
9785d5fb 33 void FillZeroChan ()const; //complete the DB
34 Bool_t CkovHiddenTrk (AliESDtrack *pTrk,TClonesArray *pClu,Int_t index, Double_t nmean); //Pattern recognition without trackinf information
5a3482a0 35 Bool_t CluPreFilter (TClonesArray *pClu ); //Pre clustering filter to cut bkg clusters
36 Bool_t DoRecHiddenTrk ( ); //Calling to the fitted procedures
37 Bool_t FindShape (Double_t &thTrkRec,Double_t &phiTrkRec,Double_t &thetaCRec); //Find shape of the ring
38 Bool_t ShapeModel (Int_t np,Double_t *phiphot,Double_t *dist,Double_t &xA,Double_t &xB,Double_t &phiStart);//initial shape model for the cluster candidates
aa00f952 39 Double_t VertParab (Double_t x1,Double_t y1,Double_t x2, Double_t y2, Double_t x3, Double_t y3)const;//calculate the coord. of the min. for a parabole for 3 points
5a3482a0 40 Bool_t FitFree (Double_t thTrkRec,Double_t phiTrkRec); //Fit (th,ph) of the track and ckovFit as result
9a573d52 41 Double_t FindSimmPhi (); //find phi of the ring with min. dist. algorithm
42 Int_t r2 (Double_t *coef, Double_t &x1, Double_t &x2); // solution of 2nd degree equation
5a3482a0 43 void SetNClu (Int_t nclu ) {fNClu=nclu;} //Setter for # of clusters
44 void SetClCk (Int_t i,Bool_t what ) {fClCk[i]=what;} //Setter for cluster flags
45 void SetCkovFit (Double_t ckov ) {fCkovFit=ckov;} //Setter for ckov fitted
46 void SetCkovSig2 (Double_t rms ) {fCkovSig2=rms;} //Setter for sigma2 ckov fitted
47 void SetTrkFit (Double_t th,Double_t ph ) {fThTrkFit = th;fPhTrkFit = ph;}//Setter for (th,ph) of the track
48 void SetRadXY (Double_t x,Double_t y ) {fRadX = x;fRadY = y;} //Setter for (th,ph) of the track
49 static void FunMinPhot(Int_t&/* */,Double_t* /* */,Double_t &f,Double_t *par,Int_t iflag); //Fit function to minimize thetaCer RMS/Sqrt(n) of n clusters
50 Int_t IdxMip ()const {return fIdxMip;} //Getter index of MIP
51 Double_t MipX ()const {return fMipX;} //Getter of x MIP in LORS
52 Double_t MipY ()const {return fMipY;} //Getter of y MIP in LORS
53 Double_t MipQ ()const {return fMipQ;} //Getter of Q MIP
54 Double_t RadX ()const {return fRadX;} //Getter of x at RAD in LORS
55 Double_t RadY ()const {return fRadY;} //Getter of y at RAD in LORS
56 Int_t NClu ()const {return fNClu;} //Getter of cluster multiplicity
57 Double_t XClu (Int_t i)const {return fXClu[i];} //Getter of x clu
58 Double_t YClu (Int_t i)const {return fYClu[i];} //Getter of y clu
59 Bool_t ClCk (Int_t i)const {return fClCk[i];} //Getter of cluster flags
60 Double_t CkovFit ()const {return fCkovFit;} //Getter of ckov angle fitted
e56b695f 61 Double_t ThTrkIn ()const {return fThTrkIn;} //Getter of theta started of the track
62 Double_t PhTrkIn ()const {return fPhTrkIn;} //Getter of phi started of the track
5a3482a0 63 Double_t ThTrkFit ()const {return fThTrkFit;} //Getter of theta fitted of the track
64 Double_t PhTrkFit ()const {return fPhTrkFit;} //Getter of phi fitted of the track
65//
66protected:
8f05fd11 67//
5a3482a0 68 Double_t fMipX; //mip X position for Hidden Track Algorithm
69 Double_t fMipY; //mip Y position for Hidden Track Algorithm
70 Double_t fMipQ; //mip Q for Hidden Track Algorithm
71 Double_t fRadX; //rad X position for Hidden Track Algorithm
72 Double_t fRadY; //rad Y position for Hidden Track Algorithm
73 Int_t fIdxMip; //mip index in the clus list
74 Int_t fNClu; //n clusters to fit
75 Double_t *fXClu; //container for x clus position
76 Double_t *fYClu; //container for y clus position
77 Bool_t *fClCk; //flag if cluster is used in fitting
e56b695f 78 Double_t fThTrkIn; //theta started from ShapeModel
79 Double_t fPhTrkIn; //phi started from ShapeModel
5a3482a0 80 Double_t fThTrkFit; //theta fitted of the track
81 Double_t fPhTrkFit; //phi fitted of the track
82 Double_t fCkovFit; //estimated ring Cherenkov angle
83 Double_t fCkovSig2; //estimated error^2 on ring Cherenkov angle
84
85 AliHMPIDParam *fParam; //Pointer to AliHMPIDParam
170a4fc5 86 static Int_t fgDB[500][150]; //tmp DB
8f05fd11 87//
88private:
89 AliHMPIDReconHTA(const AliHMPIDReconHTA& r); //dummy copy constructor
90 AliHMPIDReconHTA &operator=(const AliHMPIDReconHTA& r); //dummy assignment operator
5a3482a0 91//
170a4fc5 92 ClassDef(AliHMPIDReconHTA,3)
5a3482a0 93};
94
95#endif // #ifdef AliHMPIDReconHTA_cxx
96