00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020 #ifndef __CINT__
00021
00022 #include "TH1.h"
00023 #include "TFile.h"
00024 #include "TCanvas.h"
00025 #include "TApplication.h"
00026
00027 #include "../Go4Fit/TGo4FitMinuit.h"
00028 #include "../Go4Fit/TGo4Fitter.h"
00029 #include "../Go4Fit/TGo4FitDataHistogram.h"
00030 #include "../Go4Fit/TGo4FitModelPolynom.h"
00031 #include "../Go4Fit/TGo4FitModelGauss1.h"
00032 #include "../Go4Fit/TGo4FitModelFromData.h"
00033
00034 void Example10();
00035
00036 int main(int argc, char **argv)
00037 {
00038 TApplication theApp("Application", 0, 0);
00039
00040 Example10();
00041
00042 theApp.Run();
00043
00044 return 0;
00045 }
00046
00047 #endif
00048
00049
00050 TH1D* GetHistogram(const char* HistogramName) {
00051 TFile f1("histograms.root");
00052 TH1D* histo = (TH1D*) f1.Get(HistogramName);
00053 histo->SetDirectory(0);
00054 return histo;
00055 }
00056
00057 void Example10() {
00058
00059 TGo4Fitter fitter("Fitter", TGo4Fitter::ff_ML_Poisson, kTRUE);
00060
00061 TH1D* histo1 = GetHistogram("hDeg120_P_c");
00062 TH1D* histo2 = GetHistogram("hDeg120_CND");
00063
00064
00065 fitter.AddH1("data2", histo2, kTRUE, 2200., 2900.);
00066
00067
00068 fitter.AddPolynomX("data2", "Pol", 1);
00069
00070
00071 fitter.AddModel("data2", new TGo4FitModelFromData("Model1",histo1,kTRUE) );
00072
00073
00074 fitter.AddGauss1("data2", "Gauss3", 2597., 14.);
00075 fitter.AddGauss1("data2", "Gauss4", 2717., 14.);
00076
00077
00078 fitter.DoActions();
00079
00080
00081 fitter.Draw("#data2,Model1,Gauss3,Gauss4");
00082 fitter.Print("Pars");
00083 }
00084
00085