00001 #ifndef BINCORRELATIONEM_H
00002 #define BINCORRELATIONEM_H
00003
00004
00005 #include "TF1.h"
00006
00007 class BinCorrelationEM {
00008
00009 public:
00010
00011 BinCorrelationEM(Double_t *inputs = 0);
00012 ~BinCorrelationEM();
00013 void ReInit(Double_t *);
00014 double CalcCorrelation(Double_t, Double_t);
00015 double *GetErrArray(Int_t,Int_t,Int_t,Int_t);
00016
00017 private:
00018
00019 Double_t *fErrArray;
00020 Double_t *fCovMat;
00021
00022 Double_t *fInputParams;
00023
00024 void Init();
00025
00026 };
00027 #endif //BINCORRELATIONEM_H