GSI Object Oriented Online Offline (Go4)  GO4-5.3.2
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros
Example2.cxx
Go to the documentation of this file.
1 // $Id: Example2.cxx 555 2010-01-27 12:40:54Z linev $
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 für 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 
14 // Go4Fit Example N2
15 
16 
17 #ifndef __CINT__
18 
19 #include "TH1.h"
20 #include "TFile.h"
21 #include "TApplication.h"
22 
23 #include "TGo4Fitter.h"
24 #include "TGo4FitModelFunction.h"
25 #include "TGo4FitModelFormula.h"
26 
27 void Example2();
28 
29 int main(int argc, char **argv) {
30 
31  TApplication theApp("Application", 0, 0);
32 
33  Example2();
34 
35  theApp.Run();
36 
37  return 0;
38 }
39 
40 #endif
41 
42 // routine to read histogram from examples file
43 TH1D* GetHistogram(const char* HistogramName)
44 {
45  TFile* f1 = TFile::Open("histograms.root");
46  if (f1==0) return 0;
47  TH1D* histo = (TH1D*) f1->Get(HistogramName);
48  if (histo) histo->SetDirectory(0);
49  return histo;
50 }
51 
52 void Example2()
53 {
54 // create fitter, select fit function and add standard actions list
55  TGo4Fitter fitter("Fitter", TGo4Fitter::ff_ML_Poisson, kTRUE);
56 
57 // add histogram to fitter, which should be fitted
58  fitter.AddH1("data1", GetHistogram("hDeg120_P_c"), kTRUE, 2200., 2900.);
59 
60 // create polynom of first order
61  fitter.AddPolynomX( "data1", "Pol", 1);
62 
63 // create models, which are used user function and formula to calculate gaussian shape
64  TGo4FitModel* model1 = fitter.AddModel( "data1",
65  new TGo4FitModelFunction("Gauss1","Example2Func.so","gaussian",2,kTRUE) );
66  TGo4FitModel* model2 = fitter.AddModel( "data1",
67  new TGo4FitModelFormula("Gauss2", "exp(-0.5*(x-Pos)*(x-Pos)/Width/Width)",2,kTRUE));
68 
69 // set parameters names for models
70  model1->SetParsNames("Ampl","Pos","Width");
71  model2->SetParsNames("Ampl","Pos","Width");
72 
73 // set initial values of user model parameters
74  model1->SetParsValues(1.,2553.,15.);
75  model2->SetParsValues(1.,2672.,15.);
76 
77 // perform all actions
78  fitter.DoActions();
79 
80 // printing of fitter parameters
81  fitter.Print("Pars");
82 
83 // Draw data, model and two components
84  fitter.Draw("#data1,Background,Gauss1,Gauss2");
85 // fitter.Draw("#data1");
86 }
void SetParsNames(const char *name0="Par0", const char *name1="Par1", const char *name2="Par2", const char *name3="Par3", const char *name4="Par4", const char *name5="Par5", const char *name6="Par6", const char *name7="Par7", const char *name8="Par8", const char *name9="Par9")
virtual void Print(Option_t *option) const
Definition: TGo4Fitter.cxx:707
virtual void Draw(Option_t *option)
Definition: TGo4Fitter.cxx:983
void AddPolynomX(const char *DataName, const char *NamePrefix, Int_t MaxOrder=1, Int_t GroupIndex=0, Double_t lrange=0., Double_t rrange=0.)
Definition: TGo4Fitter.cxx:225
int main(int argc, char **argv)
Definition: Example2.cxx:29
void DoActions(Bool_t AllowFitterChange=kFALSE, TObjArray *Actions=0)
TH1D * GetHistogram(const char *HistogramName)
Definition: Example2.cxx:43
TGo4FitModel * AddModel(TGo4FitModel *m)
Definition: TGo4Fitter.cxx:203
void SetParsValues(Double_t *pars)
TGo4FitDataHistogram * AddH1(const char *DataName, TH1 *histo, Bool_t Owned=kFALSE, Double_t lrange=0., Double_t rrange=0.)
Definition: TGo4Fitter.cxx:126
void Example2()
Definition: Example2.cxx:52