class to contain the Cluster Position Error Formulae
More...
#include <SVDPositionErrorFunction.h>
|
typedef double(SVDPositionErrorFunction::* | posErrFunction) (double, int) const |
| typedef of the return value of the position error function
|
|
|
double | getPositionError (double snr, int size) const |
| returns the position error, depending on the cluster SNR and size
|
|
| SVDPositionErrorFunction () |
| constructor
|
|
void | set_current (int current) |
| allows to choose the function version
|
|
void | set_a1 (double a1_1, double a1_2, double a1_3, double a1_4, double a1_5) |
| set the a1 cluster size dependent parameters
|
|
void | set_a2 (double a2_1, double a2_2, double a2_3, double a2_4, double a2_5) |
| set the a2 cluster size dependent parameters
|
|
void | set_b1 (double b1_1, double b1_2, double b1_3, double b1_4, double b1_5) |
| set the b1 cluster size dependent parameters
|
|
void | set_c1 (double c1_1, double c1_2, double c1_3, double c1_4, double c1_5) |
| set the c1 cluster size dependent parameters
|
|
| SVDPositionErrorFunction (const Belle2::SVDPositionErrorFunction &a) |
| copy constructor
|
|
SVDPositionErrorFunction & | operator= (const Belle2::SVDPositionErrorFunction &a) |
| operator =
|
|
|
double | v0 (double clSNR, int clSize) const |
| v0 implementation
|
|
| ClassDef (SVDPositionErrorFunction, 2) |
| Do not stream this, please throw it in the WC.
|
|
class to contain the Cluster Position Error Formulae
Definition at line 24 of file SVDPositionErrorFunction.h.
◆ posErrFunction
typedef double(SVDPositionErrorFunction::* posErrFunction) (double, int) const |
◆ SVDPositionErrorFunction() [1/2]
constructor
Definition at line 39 of file SVDPositionErrorFunction.h.
40 {
41
42
45
46
47 }
48
50
51 };
static std::vector< posErrFunction > m_implementations
vector of functions for position error, we use the m_current
int m_current
current function ID
double v0(double clSNR, int clSize) const
v0 implementation
◆ SVDPositionErrorFunction() [2/2]
copy constructor
Definition at line 15 of file SVDPositionErrorFunction.cc.
15 : TObject(a)
16{
22 }
23
25
26}
static const int maxClusterSize
total number of cluster sizes
double m_a1[maxClusterSize]
function parameters & implementations
double m_a2[maxClusterSize]
size dependent a2-parameter
double m_c1[maxClusterSize]
size dependent c1-parameter
double m_b1[maxClusterSize]
size dependent b1-parameter
◆ getPositionError()
double getPositionError |
( |
double |
snr, |
|
|
int |
size |
|
) |
| const |
|
inline |
returns the position error, depending on the cluster SNR and size
Definition at line 32 of file SVDPositionErrorFunction.h.
33 {
35 return (this->*f)(snr, size) ;
36 }
double(SVDPositionErrorFunction::* posErrFunction)(double, int) const
typedef of the return value of the position error function
◆ operator=()
◆ set_a1()
void set_a1 |
( |
double |
a1_1, |
|
|
double |
a1_2, |
|
|
double |
a1_3, |
|
|
double |
a1_4, |
|
|
double |
a1_5 |
|
) |
| |
|
inline |
◆ set_a2()
void set_a2 |
( |
double |
a2_1, |
|
|
double |
a2_2, |
|
|
double |
a2_3, |
|
|
double |
a2_4, |
|
|
double |
a2_5 |
|
) |
| |
|
inline |
◆ set_b1()
void set_b1 |
( |
double |
b1_1, |
|
|
double |
b1_2, |
|
|
double |
b1_3, |
|
|
double |
b1_4, |
|
|
double |
b1_5 |
|
) |
| |
|
inline |
◆ set_c1()
void set_c1 |
( |
double |
c1_1, |
|
|
double |
c1_2, |
|
|
double |
c1_3, |
|
|
double |
c1_4, |
|
|
double |
c1_5 |
|
) |
| |
|
inline |
◆ set_current()
void set_current |
( |
int |
current | ) |
|
|
inline |
◆ v0()
double v0 |
( |
double |
clSNR, |
|
|
int |
clSize |
|
) |
| const |
|
inlineprivate |
v0 implementation
- Parameters
-
clSNR | cluster SNR |
clSize | cluster size |
- Returns
- final cluster position error, including scale factor
Definition at line 128 of file SVDPositionErrorFunction.h.
129 {
130
131 double x =
sqrt(clSize) * clSNR;
132
135
136 double A =
m_a1[clSize - 1] / (x +
m_a2[clSize - 1]);
137 double B =
m_b1[clSize - 1] * x;
138 double C =
m_c1[clSize - 1];
139
140 return sqrt(A * A + B * B + C * C);
141 };
double sqrt(double a)
sqrt for double
◆ m_a1
function parameters & implementations
ID = {0}, rel05: error is the sum in quadrature of A = a1/(x+a2) B = b1 * x C = c1 with x = S_cl / N_cl * sqrt(size) size dependent a1-parameter
Definition at line 118 of file SVDPositionErrorFunction.h.
◆ m_a2
◆ m_b1
◆ m_c1
◆ m_current
◆ m_implementations
◆ maxClusterSize
const int maxClusterSize = 5 |
|
staticprivate |
The documentation for this class was generated from the following files: