]> git.uio.no Git - u/mrichter/AliRoot.git/blob - TPC/AliTPCclustererMI.h
Use abstract inteface for the calibration components using tracks
[u/mrichter/AliRoot.git] / TPC / AliTPCclustererMI.h
1 #ifndef ALITPCCLUSTERERMI_H
2 #define ALITPCCLUSTERERMI_H
3
4 /* Copyright(c) 1998-1999, ALICE Experiment at CERN, All rights reserved. *
5  * See cxx source for full Copyright notice                               */
6
7 /* $Id$ */
8
9
10
11 //-------------------------------------------------------
12 //                       TPC clusterer
13 //
14 //   Origin: Marian Ivanov  
15 //-------------------------------------------------------
16 #include <Rtypes.h>
17 #include <TObject.h>
18 #define kMAXCLUSTER 2500
19
20 class TFile;
21 class AliTPCParam;
22 class AliTPCRecoParam;
23 class AliTPCclusterMI;
24 class AliTPCClustersRow;
25 class AliRawReader;
26 class AliSimDigits;
27 class TTree;
28 class TTreeSRedirector;
29 class  AliRawEventHeaderBase;
30 class AliTPCCalROC;
31
32 class AliTPCclustererMI : public TObject{
33 public:
34   AliTPCclustererMI(const AliTPCParam* par, const AliTPCRecoParam * recoParam = 0);
35   AliTPCclustererMI(const AliTPCclustererMI &param); // copy constructor
36   AliTPCclustererMI &operator = (const AliTPCclustererMI & param); //assignment
37   virtual ~AliTPCclustererMI();
38   virtual void Digits2Clusters();
39   virtual void Digits2Clusters(AliRawReader* rawReader);
40   virtual void SetOldRCUFormat(Bool_t rcuFormat = kFALSE)
41     { fIsOldRCUFormat = rcuFormat; };
42   virtual void SetInput(TTree * tree);  // set input tree with digits    
43   virtual void SetOutput(TTree * tree); // set output tree with 
44   virtual void FillRow();               // fill the output container - Tree or TObjArray
45   TObjArray * GetOutputArray(){return fOutputArray;}
46 private:
47   Bool_t IsMaximum(Float_t k, Int_t max, const Float_t *bins) const; 
48   void MakeCluster2(Int_t k,Int_t max,Float_t *bins,UInt_t m,
49    AliTPCclusterMI &c);  
50   void MakeCluster(Int_t k,Int_t max,Float_t *bins,UInt_t m,
51    AliTPCclusterMI &c); 
52   Float_t  GetSigmaY2(Int_t iz);
53   Float_t  GetSigmaZ2(Int_t iz);
54   Float_t  FitMax(Float_t vmatrix[5][5], Float_t y, Float_t z, Float_t sigmay, Float_t sigmaz);
55   void AddCluster(AliTPCclusterMI &c, Float_t *matrix, Int_t pos);  // add the cluster to the array
56   void UnfoldCluster(Float_t * matrix[7], Float_t recmatrix[5][5], 
57                      Float_t & meani, Float_t & meanj, Float_t & sum, Float_t &overlap );
58   void FindClusters(AliTPCCalROC * noiseROC);
59   Double_t  ProcesSignal(Float_t * signal, Int_t nchannels, Int_t id[3], Double_t &rms, Double_t &pedestalCalib);
60
61   Float_t * fBins;       //!digits array
62   Int_t   * fSigBins; //!digits array containg only timebins above threshold
63   Int_t     fNSigBins;//!size of fSigBins
64   Int_t fLoop;         //loop - cf in 2 loops
65   Int_t fMaxBin;       //current ( for current sector)  maximal bin
66   Int_t fMaxTime;      //current ( for current sector)  maximal time
67   Int_t fMaxPad;       //current ( for current sector)  maximal pad
68   Int_t fSector;      //!current sector
69   Int_t fRow;         //!current row
70   Float_t fSign;      //!current sign 
71   Float_t fRx;        // current radius
72   Float_t fPadWidth;  // the width of the pad
73   Float_t fPadLength;  // the width of the pad
74   Float_t fZWidth;     //the z bin width
75   Bool_t  fPedSubtraction; // perform pedestal subtraction or not
76   Bool_t  fIsOldRCUFormat; // assume old RCU raw data format
77   AliRawEventHeaderBase *fEventHeader; //! event header information
78   UInt_t  fTimeStamp;   // Time Stamp
79   UInt_t  fEventType;   // Event Type
80   TTree * fInput;   //!input  tree with digits - object not owner
81   TTree * fOutput;   //!output tree with digits - object not owner
82   TObjArray *fOutputArray;     //! output TObjArray with pointers arrays of cluster
83   AliTPCClustersRow * fRowCl;  //! current cluster row
84   AliSimDigits * fRowDig;      //! current digits row
85   const AliTPCParam * fParam;        //! tpc parameters
86   Int_t fNcluster;             // number of clusters - for given row
87   TTreeSRedirector *fDebugStreamer;     //!debug streamer
88   const AliTPCRecoParam  * fRecoParam;        //! reconstruction parameters
89   Bool_t  fBDumpSignal; // dump signal flag
90   ClassDef(AliTPCclustererMI,1)  // Time Projection Chamber digits
91 };
92
93 inline Bool_t AliTPCclustererMI::IsMaximum(Float_t q,Int_t max,const Float_t *bins) const {
94   //is this a local maximum ?
95   if (bins[-max] >= q) return kFALSE;
96   if (bins[-1  ] >= q) return kFALSE; 
97   if (bins[+max] > q) return kFALSE; 
98   if (bins[+1  ] > q) return kFALSE; 
99   if (bins[-max-1] >= q) return kFALSE;
100   if (bins[+max-1] >= q) return kFALSE; 
101   if (bins[+max+1] > q) return kFALSE; 
102   if (bins[-max+1] >= q) return kFALSE;
103   return kTRUE; 
104 }
105
106
107
108 //-----------------------------------------------------------------
109
110 #endif
111
112