Go to the documentation of this file.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 "TApplication.h"
00025
00026 #include "TGo4Fitter.h"
00027 #include "TModelTemplate.h"
00028
00029 void Example4();
00030
00031 int main(int argc, char **argv)
00032 {
00033 TApplication theApp("Application", 0, 0);
00034
00035 Example4();
00036
00037 theApp.Run();
00038
00039 return 0;
00040 }
00041
00042 #endif
00043
00044
00045 TH1D* GetHistogram(const char* HistogramName)
00046 {
00047 TFile* f1 = TFile::Open("histograms.root");
00048 if (f1==0) return 0;
00049 TH1D* histo = (TH1D*) f1->Get(HistogramName);
00050 if (histo) histo->SetDirectory(0);
00051 return histo;
00052 }
00053
00054 void Example4()
00055 {
00056
00057 TGo4Fitter fitter("Fitter", TGo4Fitter::ff_ML_Poisson, kTRUE);
00058
00059
00060 fitter.AddH1("data1", GetHistogram("hDeg120_P_c"), kTRUE, 2200., 2900.);
00061
00062
00063 fitter.AddPolynomX( "data1", "Pol", 1);
00064
00065
00066 fitter.AddModel( "data1", new TModelTemplate("Gauss1",2,kTRUE) );
00067 fitter.AddModel( "data1", new TModelTemplate("Gauss2",2,kTRUE) );
00068
00069
00070 fitter.SetParValue("Gauss1.Par0",2553.);
00071 fitter.SetParValue("Gauss1.Par1",15.);
00072 fitter.SetParValue("Gauss2.Par0",2672.);
00073 fitter.SetParValue("Gauss2.Par1",15.);
00074
00075
00076 fitter.DoActions();
00077
00078
00079 fitter.Draw ("#data1,Gauss1,Gauss2");
00080 fitter.Print("Pars");
00081 }