Main Page   Namespace List   Class Hierarchy   Alphabetical List   Compound List   File List   Compound Members   File Members  

/Go4Fit/TGo4FitModelGaussN.h

Go to the documentation of this file.
00001 //---------------------------------------------------------------
00002 //        Go4 Release Package v2.10-5 (build 21005) 
00003 //                      03-Nov-2005
00004 //---------------------------------------------------------------
00005 //       The GSI Online Offline Object Oriented (Go4) Project
00006 //       Experiment Data Processing at DVEE department, GSI
00007 //---------------------------------------------------------------
00008 //
00009 //Copyright (C) 2000- Gesellschaft f. Schwerionenforschung, GSI
00010 //                    Planckstr. 1, 64291 Darmstadt, Germany
00011 //Contact:            http://go4.gsi.de
00012 //----------------------------------------------------------------
00013 //This software can be used under the license agreements as stated
00014 //in Go4License.txt file which is part of the distribution.
00015 //----------------------------------------------------------------
00016 #ifndef TGO4FITMODELGAUSSN_H
00017 #define TGO4FITMODELGAUSSN_H
00018 #include "TArrayI.h"
00019 #include "TVectorD.h"
00020 #include "TMatrixD.h"
00021 #include "TGo4FitModel.h"
00022 
00037 class TGo4FitModelGaussN : public TGo4FitModel {
00038    public:
00039 
00043       TGo4FitModelGaussN();
00044 
00049       TGo4FitModelGaussN(const char* iName, Int_t iNDimension = 3);
00050 
00054       virtual ~TGo4FitModelGaussN();
00055 
00059       Int_t GetAxisNumbers() { return fxIndexes.GetSize(); }
00060 
00064       Bool_t SetAxisNumbers(Int_t naxis);
00065 
00071       Int_t GetAxisForIndex(Int_t indx) { return fxIndexes[indx]; }
00072 
00076       void SetAxisForIndex(Int_t indx, Int_t axis) { fxIndexes[indx] = axis; }
00077 
00082       Bool_t ResortIndexes(Int_t leaveaxis = -1);
00083 
00087       void FillMuVector(TVectorD& Mu);
00088 
00092       void FillSigmaMatrix(TMatrixD& Sigma);
00093 
00097       virtual void Print(Option_t* option) const;
00098 
00099       virtual Bool_t BeforeEval(Int_t);
00100       virtual Double_t EvalN(const Double_t* v);
00101 
00102    protected:
00103       TString GetPosParName(Int_t naxis);
00104       TString GetWidthParName(Int_t naxis);
00105       TString GetCovarParName(Int_t naxis1, Int_t naxis2);
00106 
00107       virtual Int_t GetPosParIndex(Int_t naxis);
00108       virtual Int_t GetWidthParIndex(Int_t naxis);
00109 
00110       virtual void AfterEval();
00111 
00115       TArrayI fxIndexes;
00116 
00117    private:
00118 
00122       Int_t ndim;                 
00123 
00124 
00128       Int_t* indx;                
00129 
00130 
00134       TVectorD* Vect_mu;          
00135 
00136 
00140       TMatrixD* Matr_sig;         
00141 
00142 
00146       TVectorD* Vect_x;           
00147 
00148 
00152       TVectorD* Vect_dx;          
00153 
00154    ClassDef(TGo4FitModelGaussN,1)
00155 };
00156 #endif // TGO4FITMODELGAUSSN_H
00157 
00158 //----------------------------END OF GO4 SOURCE FILE ---------------------

Generated on Tue Nov 8 10:55:57 2005 for Go4-v2.10-5 by doxygen1.2.15