GSI Object Oriented Online Offline (Go4) GO4-6.4.0
All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Modules Pages
Example10.cxx
Go to the documentation of this file.
1// $Id$
2//-----------------------------------------------------------------------
3// The GSI Online Offline Object Oriented (Go4) Project
4// Experiment Data Processing at EE department, GSI
5//-----------------------------------------------------------------------
6// Copyright (C) 2000- GSI Helmholtzzentrum fuer Schwerionenforschung GmbH
7// Planckstr. 1, 64291 Darmstadt, Germany
8// Contact: http://go4.gsi.de
9//-----------------------------------------------------------------------
10// This software can be used under the license agreements as stated
11// in Go4License.txt file which is part of the distribution.
12//-----------------------------------------------------------------------
13
20
21
22#ifndef __CINT__
23
24#include "TH1.h"
25#include "TFile.h"
26#include "TCanvas.h"
27#include "TApplication.h"
28
29#include "TGo4FitMinuit.h"
30#include "TGo4Fitter.h"
32#include "TGo4FitModelPolynom.h"
33#include "TGo4FitModelGauss1.h"
35
36void Example10();
37
38int main(int argc, char **argv)
39{
40 TApplication theApp("Application", nullptr, nullptr);
41
42 Example10();
43
44 theApp.Run();
45
46 return 0;
47}
48
49#endif
50
51// routine to read histogram from examples file
52TH1D* GetHistogram(const char *HistogramName)
53{
54 TFile *f = TFile::Open("histograms.root");
55 if (!f) return nullptr;
56 TH1D *histo = nullptr;
57 f->GetObject(HistogramName, histo);
58 if (histo) histo->SetDirectory(nullptr);
59 delete f;
60 return histo;
61}
62
64{
65// create fitter and select function to fit
66 TGo4Fitter fitter("Fitter", TGo4Fitter::ff_ML_Poisson, kTRUE);
67
68 TH1D* histo1 = GetHistogram("hDeg120_P_c"); // get histogram from file
69 TH1D* histo2 = GetHistogram("hDeg120_CND"); // get histogram from file
70
71// add histogram to fitter, which should be fitted
72 fitter.AddH1("data2", histo2, kTRUE, 2200., 2900.);
73
74// create polynom of first order
75 fitter.AddPolynomX("data2", "Pol", 1);
76
77// add first histogram as component of second histogram
78 fitter.AddModel("data2", new TGo4FitModelFromData("Model1",histo1,kTRUE) );
79
80// create two gaussians
81 fitter.AddGauss1("data2", "Gauss3", 2597., 14.);
82 fitter.AddGauss1("data2", "Gauss4", 2717., 14.);
83
84// perform all actions
85 fitter.DoActions();
86
87 // call fitter Draw method with options #data1,Gauss1,Gauss2
88 fitter.Draw("#data2,Model1,Gauss3,Gauss4");
89 fitter.Print("Pars");
90}
int main(int argc, char **argv)
Definition Example10.cxx:38
TH1D * GetHistogram(const char *HistogramName)
Definition Example10.cxx:52
void Example10()
Definition Example10.cxx:63
Model object, which is uses TGo4FitData object to produce model bins.
void DoActions(Bool_t AllowFitterChange=kFALSE, TObjArray *Actions=nullptr)
Executes actions list.
Central class of Go4Fit package.
Definition TGo4Fitter.h:38
TGo4FitDataHistogram * AddH1(const char *DataName, TH1 *histo, Bool_t Owned=kFALSE, Double_t lrange=0., Double_t rrange=0.)
Create TGo4FitDataHistogram object and adds its to fitter.
void Print(Option_t *option="") const override
Print containment of fitter.
TGo4FitModelGauss1 * AddGauss1(const char *DataName, const char *ModelName, Double_t iPosition, Double_t iWidth, Double_t iAmpl=1., Int_t Axis=0)
Add 1-dim gaussian model to fitter.
void AddPolynomX(const char *DataName, const char *NamePrefix, Int_t MaxOrder=1, Int_t GroupIndex=0, Double_t lrange=0., Double_t rrange=0.)
Construct 1-dim polynom for specified data object for x scale.
void Draw(Option_t *option) override
Draw fitter on current canvas.
TGo4FitModel * AddModel(TGo4FitModel *m)
Add model component to fitter.