LayerFitContribution class. More...
#include <LArTwoDSlidingFitObjects.h>
Public Member Functions | |
LayerFitContribution () | |
Default constructor. More... | |
void | AddPoint (const float l, const float t) |
Add point to layer fit. More... | |
double | GetSumT () const |
Get the sum t. More... | |
double | GetSumL () const |
Get the sum l. More... | |
double | GetSumTT () const |
Get the sum t * t. More... | |
double | GetSumLT () const |
Get the sum l * t. More... | |
double | GetSumLL () const |
Get the sum l * l. More... | |
unsigned int | GetNPoints () const |
Get the number of points used. More... | |
Private Attributes | |
double | m_sumT |
The sum t. More... | |
double | m_sumL |
The sum l. More... | |
double | m_sumTT |
The sum t * t. More... | |
double | m_sumLT |
The sum l * t. More... | |
double | m_sumLL |
The sum l * l. More... | |
unsigned int | m_nPoints |
The number of points used. More... | |
LayerFitContribution class.
Definition at line 91 of file LArTwoDSlidingFitObjects.h.
|
inline |
Default constructor.
Definition at line 334 of file LArTwoDSlidingFitObjects.h.
|
inline |
Add point to layer fit.
l | the longitudinal coordinate |
t | the transverse coordinate |
Definition at line 340 of file LArTwoDSlidingFitObjects.h.
|
inline |
Get the number of points used.
Definition at line 390 of file LArTwoDSlidingFitObjects.h.
|
inline |
Get the sum l.
Definition at line 362 of file LArTwoDSlidingFitObjects.h.
|
inline |
Get the sum l * l.
Definition at line 376 of file LArTwoDSlidingFitObjects.h.
|
inline |
Get the sum l * t.
Definition at line 369 of file LArTwoDSlidingFitObjects.h.
|
inline |
Get the sum t.
Definition at line 355 of file LArTwoDSlidingFitObjects.h.
|
inline |
Get the sum t * t.
Definition at line 383 of file LArTwoDSlidingFitObjects.h.
|
private |
The number of points used.
Definition at line 155 of file LArTwoDSlidingFitObjects.h.
|
private |
The sum l.
Definition at line 151 of file LArTwoDSlidingFitObjects.h.
|
private |
The sum l * l.
Definition at line 154 of file LArTwoDSlidingFitObjects.h.
|
private |
The sum l * t.
Definition at line 153 of file LArTwoDSlidingFitObjects.h.
|
private |
The sum t.
Definition at line 150 of file LArTwoDSlidingFitObjects.h.
|
private |
The sum t * t.
Definition at line 152 of file LArTwoDSlidingFitObjects.h.