LArSoft
v09_90_00
Liquid Argon Software toolkit - https://larsoft.org/
|
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 346 of file LArTwoDSlidingFitObjects.h.
References m_nPoints, m_sumL, m_sumLL, m_sumLT, m_sumT, and m_sumTT.
|
inline |
Get the number of points used.
Definition at line 396 of file LArTwoDSlidingFitObjects.h.
References m_nPoints.
|
inline |
Get the sum l.
Definition at line 368 of file LArTwoDSlidingFitObjects.h.
References m_sumL.
|
inline |
Get the sum l * l.
Definition at line 382 of file LArTwoDSlidingFitObjects.h.
References m_sumLL.
|
inline |
Get the sum l * t.
Definition at line 375 of file LArTwoDSlidingFitObjects.h.
References m_sumLT.
|
inline |
Get the sum t.
Definition at line 361 of file LArTwoDSlidingFitObjects.h.
References m_sumT.
|
inline |
Get the sum t * t.
Definition at line 389 of file LArTwoDSlidingFitObjects.h.
References m_sumTT.
|
private |
The number of points used.
Definition at line 155 of file LArTwoDSlidingFitObjects.h.
Referenced by AddPoint(), and GetNPoints().
|
private |
The sum l.
Definition at line 151 of file LArTwoDSlidingFitObjects.h.
Referenced by AddPoint(), and GetSumL().
|
private |
The sum l * l.
Definition at line 154 of file LArTwoDSlidingFitObjects.h.
Referenced by AddPoint(), and GetSumLL().
|
private |
The sum l * t.
Definition at line 153 of file LArTwoDSlidingFitObjects.h.
Referenced by AddPoint(), and GetSumLT().
|
private |
The sum t.
Definition at line 150 of file LArTwoDSlidingFitObjects.h.
Referenced by AddPoint(), and GetSumT().
|
private |
The sum t * t.
Definition at line 152 of file LArTwoDSlidingFitObjects.h.
Referenced by AddPoint(), and GetSumTT().