#ifndef ALITPCCALROC_H
#define ALITPCCALROC_H
#include <TObject.h>
#include <TMath.h>
#include <AliTPCROC.h>
#include "TLinearFitter.h"
class TH1F;
class TH2F;
class TArrayI;
class TF1;
class AliTPCCalROC : public TNamed {
public:
AliTPCCalROC();
AliTPCCalROC(UInt_t sector);
AliTPCCalROC(const AliTPCCalROC &c);
AliTPCCalROC &operator = (const AliTPCCalROC & param);
virtual ~AliTPCCalROC();
UInt_t GetSector() const { return fSector;}
UInt_t GetNrows() const { return fNRows;};
UInt_t GetNchannels() const { return fNChannels;};
Bool_t IsInRange(UInt_t row, UInt_t pad) { return (row<fNRows)? (fkIndexes[row]+pad)<fNChannels:kFALSE;}
UInt_t GetNPads(UInt_t row) const { return (row<fNRows)? AliTPCROC::Instance()->GetNPads(fSector,row):0;};
Float_t GetValue(UInt_t row, UInt_t pad) const { return ( (row<fNRows) && (fkIndexes[row]+pad)<fNChannels)? fData[fkIndexes[row]+pad]: 0; };
Float_t GetValue(UInt_t channel) const { return fData[channel]; };
void SetValue(UInt_t row, UInt_t pad, Float_t vd) { if ( row<fNRows && (fkIndexes[row]+pad)<fNChannels)fData[fkIndexes[row]+pad]= vd; }
void SetValue(UInt_t channel, Float_t vd) {fData[channel]= vd; }
void Reset();
virtual void Draw(Option_t* option = "");
Bool_t MedianFilter(Int_t deltaRow, Int_t deltaPad, AliTPCCalROC*outlierROC=0, Bool_t doEdge=kTRUE);
Bool_t LTMFilter(Int_t deltaRow, Int_t deltaPad, Float_t fraction, Int_t type, AliTPCCalROC*outlierROC=0, Bool_t doEdge=kTRUE);
Bool_t Convolute(Double_t sigmaPad, Double_t sigmaRow, AliTPCCalROC*outlierPad=0, TF1 *fpad=0, TF1 *frow=0 );
void Add(Float_t c1);
void Multiply(Float_t c1);
void Add(const AliTPCCalROC * roc, Double_t c1 = 1);
void Multiply(const AliTPCCalROC * roc);
void Divide(const AliTPCCalROC * roc);
Double_t GetMean(AliTPCCalROC *const outlierROC = 0) const;
Double_t GetRMS(AliTPCCalROC *const outlierROC = 0) const;
Double_t GetMedian(AliTPCCalROC *const outlierROC = 0) const;
Double_t GetLTM(Double_t *const sigma=0, Double_t fraction=0.9, AliTPCCalROC *const outlierROC = 0);
TH1F * MakeHisto1D(Float_t min=4, Float_t max=-4, Int_t type=0);
TH2F * MakeHisto2D(Float_t min=4, Float_t max=-4, Int_t type=0);
TH2F * MakeHistoOutliers(Float_t delta=4, Float_t fraction=0.7, Int_t mode=0);
AliTPCCalROC * LocalFit(Int_t rowRadius, Int_t padRadius, AliTPCCalROC* ROCoutliers = 0, Bool_t robust = kFALSE, Double_t chi2Threshold = 5, Double_t robustFraction = 0.7);
void GlobalFit(const AliTPCCalROC* ROCoutliers, Bool_t robust, TVectorD &fitParam, TMatrixD &covMatrix, Float_t & chi2, Int_t fitType = 1, Double_t chi2Threshold = 5, Double_t robustFraction = 0.7, Double_t err=1);
static AliTPCCalROC* CreateGlobalFitCalROC(TVectorD &fitParam, Int_t sector);
static void Test();
protected:
Double_t GetNeighbourhoodValue(TLinearFitter* fitterQ, Int_t row, Int_t pad, Int_t rRadius, Int_t pRadius, AliTPCCalROC *const ROCoutliers, Bool_t robust, Double_t chi2Threshold, Double_t robustFraction);
void GetNeighbourhood(TArrayI* &rowArray, TArrayI* &padArray, Int_t row, Int_t pad, Int_t rRadius, Int_t pRadius);
UInt_t fSector;
UInt_t fNChannels;
UInt_t fNRows;
const UInt_t* fkIndexes;
Float_t *fData;
ClassDef(AliTPCCalROC,2)
};
#endif