]> git.uio.no Git - u/mrichter/AliRoot.git/blame - TPC/AliTPCCalROC.h
Add temperature entry (Marian)
[u/mrichter/AliRoot.git] / TPC / AliTPCCalROC.h
CommitLineData
07627591 1#ifndef ALITPCCALROC_H
2#define ALITPCCALROC_H
3/* Copyright(c) 1998-1999, ALICE Experiment at CERN, All rights reserved. *
4 * See cxx source for full Copyright notice */
5
6/* $Id: AliTPCCalROC.h,v */
7
8//////////////////////////////////////////////////
9// //
10// TPC calibration base class for one ROC //
11// //
12//////////////////////////////////////////////////
07627591 13#include <TObject.h>
184bcc16 14#include <TMath.h>
c5bbaa2c 15#include <AliTPCROC.h>
f116e22c 16#include "TLinearFitter.h"
17
184bcc16 18class TH1F;
19class TH2F;
72fbbc82 20class TArrayI;
07627591 21//_____________________________________________________________________________
22class AliTPCCalROC : public TObject {
23
24 public:
25
26 AliTPCCalROC();
c5bbaa2c 27 AliTPCCalROC(UInt_t sector);
07627591 28 AliTPCCalROC(const AliTPCCalROC &c);
179c6296 29 AliTPCCalROC &operator = (const AliTPCCalROC & param);
07627591 30 virtual ~AliTPCCalROC();
c5bbaa2c 31 UInt_t GetNrows() const { return fNRows;};
32 UInt_t GetNchannels() const { return fNChannels;};
33 UInt_t GetNPads(UInt_t row) const { return (row<fNRows)? AliTPCROC::Instance()->GetNPads(fSector,row):0;};
34 Float_t GetValue(UInt_t row, UInt_t pad) const { return ( (row<fNRows) && (fIndexes[row]+pad)<fNChannels)? fData[fIndexes[row]+pad]: 0; };
35 Float_t GetValue(UInt_t channel) const { return fData[channel]; };
36 void SetValue(UInt_t row, UInt_t pad, Float_t vd) { if ( row<fNRows && (fIndexes[row]+pad)<fNChannels)fData[fIndexes[row]+pad]= vd; };
37 void SetValue(UInt_t channel, Float_t vd) {fData[channel]= vd; };
2e9bedc9 38 virtual void Draw(Option_t* option = "");
184bcc16 39 //
43b569c6 40 // algebra
41 void Add(Float_t c1);
42 void Multiply(Float_t c1);
43 void Add(const AliTPCCalROC * roc, Double_t c1 = 1);
44 void Multiply(const AliTPCCalROC * roc);
45 void Divide(const AliTPCCalROC * roc);
46 // statistic
47 //
184bcc16 48 Double_t GetMean(){return TMath::Mean(fNChannels, fData);}
49 Double_t GetRMS() {return TMath::RMS(fNChannels, fData);}
50 Double_t GetMedian() {return TMath::Median(fNChannels, fData);}
51 Double_t GetLTM(Double_t *sigma=0, Double_t fraction=0.9);
52 TH1F * MakeHisto1D(Float_t min=4, Float_t max=-4, Int_t type=0);
53 TH2F * MakeHisto2D(Float_t min=4, Float_t max=-4, Int_t type=0);
54 TH2F * MakeHistoOutliers(Float_t delta=4, Float_t fraction=0.7, Int_t mode=0);
72fbbc82 55
56 AliTPCCalROC * LocalFit(Int_t rowRadius, Int_t padRadius, AliTPCCalROC* ROCoutliers = 0, Bool_t robust = kFALSE);
f116e22c 57 //
58 void GlobalFit(const AliTPCCalROC* ROCoutliers, Bool_t robust, TVectorD &fitParam, TMatrixD &covMatrix, Float_t & chi2, Int_t fitType = 1);
59 //
60 static AliTPCCalROC* CreateGlobalFitCalROC(TVectorD &fitParam, Int_t sector);
72fbbc82 61
c5bbaa2c 62 static void Test();
63 protected:
72fbbc82 64
65 Double_t GetNeighbourhoodValue(TLinearFitter* fitterQ, Int_t row, Int_t pad, Int_t rRadius, Int_t pRadius, AliTPCCalROC* ROCoutliers, Bool_t robust);
66 void GetNeighbourhood(TArrayI* &rowArray, TArrayI* &padArray, Int_t row, Int_t pad, Int_t rRadius, Int_t pRadius);
67
c5bbaa2c 68 UInt_t fSector; // sector number
69 UInt_t fNChannels; // number of channels
70 UInt_t fNRows; // number of rows
71 const UInt_t* fIndexes; //!indexes
72 Float_t *fData; //[fNChannels] Data
07627591 73 ClassDef(AliTPCCalROC,1) // TPC ROC calibration class
74
75};
76
77#endif