Logo ROOT  
Reference Guide
 
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Modules Pages
Loading...
Searching...
No Matches
MnParabola.h
Go to the documentation of this file.
1// @(#)root/minuit2:$Id$
2// Authors: M. Winkler, F. James, L. Moneta, A. Zsenei 2003-2005
3
4/**********************************************************************
5 * *
6 * Copyright (c) 2005 LCG ROOT Math team, CERN/PH-SFT *
7 * *
8 **********************************************************************/
9
10#ifndef ROOT_Minuit2_MnParabola
11#define ROOT_Minuit2_MnParabola
12
13#include <cmath>
14
15namespace ROOT {
16
17namespace Minuit2 {
18
19/**
20
21This class defines a parabola of the form a*x*x + b*x + c
22
23@author Fred James and Matthias Winkler; comments added by Andras Zsenei
24and Lorenzo Moneta
25
26@ingroup Minuit
27
28 */
29
31
32public:
33 /**
34
35 Constructor that initializes the parabola with its three parameters.
36
37 @param a the coefficient of the quadratic term
38 @param b the coefficient of the linear term
39 @param c the constant
40
41 */
42
43 MnParabola(double a, double b, double c) : fA(a), fB(b), fC(c) {}
44
45 /**
46
47 Evaluates the parabola a the point x.
48
49 @param x the coordinate where the parabola needs to be evaluated.
50
51 @return the y coordinate of the parabola corresponding to x.
52
53 */
54
55 double Y(double x) const { return (fA * x * x + fB * x + fC); }
56
57 /**
58
59 Calculates the bigger of the two x values corresponding to the
60 given y Value.
61
62 <p>
63
64 ???????!!!!!!!!! And when there is none?? it looks like it will
65 crash?? what is sqrt (-1.0) ?
66
67 @param y the y Value for which the x Value is to be calculated.
68
69 @return the bigger one of the two corresponding values.
70
71 */
72
73 // ok, at first glance it does not look like the formula for the quadratic
74 // equation, but it is! ;-)
75 double X_pos(double y) const { return (std::sqrt(y / fA + Min() * Min() - fC / fA) + Min()); }
76 // maybe it is worth to check the performance improvement with the below formula??
77 // double X_pos(double y) const {return (std::sqrt(y/fA + fB*fB/(4.*fA*fA) - fC/fA) - fB/(2.*fA));}
78
79 /**
80
81 Calculates the smaller of the two x values corresponding to the
82 given y Value.
83
84 <p>
85
86 ???????!!!!!!!!! And when there is none?? it looks like it will
87 crash?? what is sqrt (-1.0) ?
88
89 @param y the y Value for which the x Value is to be calculated.
90
91 @return the smaller one of the two corresponding values.
92
93 */
94
95 double X_neg(double y) const { return (-std::sqrt(y / fA + Min() * Min() - fC / fA) + Min()); }
96
97 /**
98
99 Calculates the x coordinate of the Minimum of the parabola.
100
101 @return x coordinate of the Minimum.
102
103 */
104
105 double Min() const { return -fB / (2. * fA); }
106
107 /**
108
109 Calculates the y coordinate of the Minimum of the parabola.
110
111 @return y coordinate of the Minimum.
112
113 */
114
115 double YMin() const { return (-fB * fB / (4. * fA) + fC); }
116
117 /**
118
119 Accessor to the coefficient of the quadratic term.
120
121 @return the coefficient of the quadratic term.
122
123 */
124
125 double A() const { return fA; }
126
127 /**
128
129 Accessor to the coefficient of the linear term.
130
131 @return the coefficient of the linear term.
132
133 */
134
135 double B() const { return fB; }
136
137 /**
138
139 Accessor to the coefficient of the constant term.
140
141 @return the coefficient of the constant term.
142
143 */
144
145 double C() const { return fC; }
146
147private:
148 double fA;
149 double fB;
150 double fC;
151};
152
153} // namespace Minuit2
154
155} // namespace ROOT
156
157#endif // ROOT_Minuit2_MnParabola
#define b(i)
Definition RSha256.hxx:100
#define c(i)
Definition RSha256.hxx:101
#define a(i)
Definition RSha256.hxx:99
This class defines a parabola of the form a*x*x + b*x + c.
Definition MnParabola.h:30
double X_neg(double y) const
Calculates the smaller of the two x values corresponding to the given y Value.
Definition MnParabola.h:95
double X_pos(double y) const
Calculates the bigger of the two x values corresponding to the given y Value.
Definition MnParabola.h:75
double YMin() const
Calculates the y coordinate of the Minimum of the parabola.
Definition MnParabola.h:115
double B() const
Accessor to the coefficient of the linear term.
Definition MnParabola.h:135
double C() const
Accessor to the coefficient of the constant term.
Definition MnParabola.h:145
double Min() const
Calculates the x coordinate of the Minimum of the parabola.
Definition MnParabola.h:105
double A() const
Accessor to the coefficient of the quadratic term.
Definition MnParabola.h:125
MnParabola(double a, double b, double c)
Constructor that initializes the parabola with its three parameters.
Definition MnParabola.h:43
double Y(double x) const
Evaluates the parabola a the point x.
Definition MnParabola.h:55
Double_t y[n]
Definition legend1.C:17
Double_t x[n]
Definition legend1.C:17
tbb::task_arena is an alias of tbb::interface7::task_arena, which doesn't allow to forward declare tb...