Logo ROOT  
Reference Guide
 
Loading...
Searching...
No Matches
fitCircle.C
Go to the documentation of this file.
1/// \file
2/// \ingroup tutorial_fit
3/// \notebook
4/// Generate points distributed with some errors around a circle
5/// Fit a circle through the points and draw
6/// To run the script, do, eg
7///
8/// ~~~{.cpp}
9/// root > .x fitCircle.C (10000 points by default)
10/// root > .x fitCircle.C(100); (with only 100 points
11/// root > .x fitCircle.C++(100000); with ACLIC
12/// ~~~
13///
14/// \macro_image
15/// \macro_output
16/// \macro_code
17///
18/// \author Rene Brun
19
20#include "TCanvas.h"
21#include "TRandom3.h"
22#include "TGraph.h"
23#include "TMath.h"
24#include "TArc.h"
25#include "Fit/Fitter.h"
26#include <Math/Functor.h>
27
28//____________________________________________________________________
29void fitCircle(int n=10000) {
30 //generates n points around a circle and fit them
31 TCanvas *c1 = new TCanvas("c1","c1",600,600);
32 c1->SetGrid();
33 TGraph* gr = new TGraph(n);
34 if (n> 999) gr->SetMarkerStyle(1);
35 else gr->SetMarkerStyle(3);
36 TRandom3 r;
37 double x,y;
38 for (int i=0;i<n;i++) {
39 r.Circle(x,y,r.Gaus(4,0.3));
40 gr->SetPoint(i,x,y);
41 }
42 c1->DrawFrame(-5,-5,5,5);
43 gr->Draw("p");
44
45
46 auto chi2Function = [&](const double *par) {
47 //minimisation function computing the sum of squares of residuals
48 // looping at the graph points
49 int np = gr->GetN();
50 double f = 0;
51 double *x = gr->GetX();
52 double *y = gr->GetY();
53 for (int i=0;i<np;i++) {
54 double u = x[i] - par[0];
55 double v = y[i] - par[1];
56 double dr = par[2] - std::sqrt(u*u+v*v);
57 f += dr*dr;
58 }
59 return f;
60 };
61
62 // wrap chi2 function in a function object for the fit
63 // 3 is the number of fit parameters (size of array par)
64 ROOT::Math::Functor fcn(chi2Function,3);
65 ROOT::Fit::Fitter fitter;
66
67
68 double pStart[3] = {0,0,1};
69 fitter.SetFCN(fcn, pStart);
70 fitter.Config().ParSettings(0).SetName("x0");
71 fitter.Config().ParSettings(1).SetName("y0");
72 fitter.Config().ParSettings(2).SetName("R");
73
74 // do the fit
75 bool ok = fitter.FitFCN();
76 if (!ok) {
77 Error("line3Dfit","Line3D Fit failed");
78 }
79
80 const ROOT::Fit::FitResult & result = fitter.Result();
81 result.Print(std::cout);
82
83 //Draw the circle on top of the points
84 TArc *arc = new TArc(result.Parameter(0),result.Parameter(1),result.Parameter(2));
85 arc->SetLineColor(kRed);
86 arc->SetLineWidth(4);
87 arc->SetFillStyle(0);
88 arc->Draw();
89}
#define f(i)
Definition RSha256.hxx:104
@ kRed
Definition Rtypes.h:66
void Error(const char *location, const char *msgfmt,...)
Use this function in case an error occurred.
Definition TError.cxx:185
Option_t Option_t TPoint TPoint const char GetTextMagnitude GetFillStyle GetLineColor GetLineWidth GetMarkerStyle GetTextAlign GetTextColor GetTextSize void char Point_t Rectangle_t WindowAttributes_t Float_t Float_t Float_t Int_t Int_t UInt_t UInt_t Rectangle_t Int_t Int_t Window_t TString Int_t GCValues_t GetPrimarySelectionOwner GetDisplay GetScreen GetColormap GetNativeEvent const char const char dpyName wid window const char font_name cursor keysym reg const char only_if_exist regb h Point_t np
Option_t Option_t TPoint TPoint const char GetTextMagnitude GetFillStyle GetLineColor GetLineWidth GetMarkerStyle GetTextAlign GetTextColor GetTextSize void char Point_t Rectangle_t WindowAttributes_t Float_t r
Option_t Option_t TPoint TPoint const char GetTextMagnitude GetFillStyle GetLineColor GetLineWidth GetMarkerStyle GetTextAlign GetTextColor GetTextSize void char Point_t Rectangle_t WindowAttributes_t Float_t Float_t Float_t Int_t Int_t UInt_t UInt_t Rectangle_t result
const ParameterSettings & ParSettings(unsigned int i) const
get the parameter settings for the i-th parameter (const method)
Definition FitConfig.h:76
class containing the result of the fit and all the related information (fitted parameter values,...
Definition FitResult.h:47
Fitter class, entry point for performing all type of fits.
Definition Fitter.h:77
const FitResult & Result() const
get fit result
Definition Fitter.h:394
bool FitFCN(unsigned int npar, Function &fcn, const double *params=nullptr, unsigned int dataSize=0, int fitType=0)
Fit using the a generic FCN function as a C++ callable object implementing double () (const double *)...
Definition Fitter.h:649
const FitConfig & Config() const
access to the fit configuration (const method)
Definition Fitter.h:422
bool SetFCN(unsigned int npar, Function &fcn, const double *params=nullptr, unsigned int dataSize=0, int fitType=0)
Set a generic FCN function as a C++ callable object implementing double () (const double *) Note that...
Definition Fitter.h:656
void SetName(const std::string &name)
interaction
Documentation for class Functor class.
Definition Functor.h:47
Create an Arc.
Definition TArc.h:26
virtual void SetFillStyle(Style_t fstyle)
Set the fill area style.
Definition TAttFill.h:39
virtual void SetLineWidth(Width_t lwidth)
Set the line width.
Definition TAttLine.h:43
virtual void SetLineColor(Color_t lcolor)
Set the line color.
Definition TAttLine.h:40
virtual void SetMarkerStyle(Style_t mstyle=1)
Set the marker style.
Definition TAttMarker.h:40
The Canvas class.
Definition TCanvas.h:23
void Draw(Option_t *option="") override
Draw this ellipse with its current attributes.
Definition TEllipse.cxx:169
A TGraph is an object made of two arrays X and Y with npoints each.
Definition TGraph.h:41
virtual void SetPoint(Int_t i, Double_t x, Double_t y)
Set x and y values for point number i.
Definition TGraph.cxx:2319
Double_t * GetY() const
Definition TGraph.h:139
Int_t GetN() const
Definition TGraph.h:131
Double_t * GetX() const
Definition TGraph.h:138
void Draw(Option_t *chopt="") override
Draw this graph with its current attributes.
Definition TGraph.cxx:809
Random number generator class based on M.
Definition TRandom3.h:27
Double_t y[n]
Definition legend1.C:17
return c1
Definition legend1.C:41
Double_t x[n]
Definition legend1.C:17
const Int_t n
Definition legend1.C:16
TGraphErrors * gr
Definition legend1.C:25