Base class for all the fit data types: Stores the coordinates and the DataOptions.
class holding the fit data points. It is template on the type of point, which can be for example a binned or unbinned point. It is basically a wrapper on an std::vector
Public Member Functions | |
FitData (const DataOptions &opt, const DataRange &range, unsigned int maxpoints=0, unsigned int dim=1) | |
construct passing options and data range | |
FitData (const DataOptions &opt, unsigned int maxpoints=0, unsigned int dim=1) | |
construct passing options and default data range | |
FitData (const DataRange &range, unsigned int maxpoints, const double *dataX) | |
constructor for multi-dim external data and a range (data are copied inside according to the range) Uses as argument an iterator of a list (or vector) containing the const double * of the data An example could be the std::vector<const double *>::begin | |
FitData (const DataRange &range, unsigned int maxpoints, const double *dataX, const double *dataY) | |
constructor for multi-dim external data and a range (data are copied inside according to the range) Uses as argument an iterator of a list (or vector) containing the const double * of the data An example could be the std::vector<const double *>::begin | |
FitData (const DataRange &range, unsigned int maxpoints, const double *dataX, const double *dataY, const double *dataZ) | |
constructor for multi-dim external data and a range (data are copied inside according to the range) Uses as argument an iterator of a list (or vector) containing the const double * of the data An example could be the std::vector<const double *>::begin | |
template<class Iterator > | |
FitData (const DataRange &range, unsigned int maxpoints, unsigned int dim, Iterator dataItr) | |
constructor for multi-dim external data and a range (data are copied inside according to the range) Uses as argument an iterator of a list (or vector) containing the const double * of the data An example could be the std::vector<const double *>::begin | |
FitData (const DataRange &range, unsigned int maxpoints=0, unsigned int dim=1) | |
construct passing range and default options | |
FitData (const FitData &rhs) | |
FitData (unsigned int maxpoints=0, unsigned int dim=1) | |
construct with default option and data range | |
FitData (unsigned int n, const double *dataX) | |
constructor from external data for 1D data | |
FitData (unsigned int n, const double *dataX, const double *dataY) | |
constructor from external data for 2D data | |
FitData (unsigned int n, const double *dataX, const double *dataY, const double *dataZ) | |
constructor from external data for 3D data | |
template<class Iterator > | |
FitData (unsigned int n, unsigned int dim, Iterator dataItr) | |
constructor for multi-dim external data (data are not copied inside) Uses as argument an iterator of a list (or vector) containing the const double * of the data An example could be the std::vector<const double *>::begin In case of weighted data, the external data must have a dim+1 lists of data The passed dim refers just to the coordinate size | |
virtual | ~FitData () |
dummy virtual destructor | |
void | Add (const double *x) |
add multi-dim coordinate data with only value | |
void | Add (double x) |
add one dim data with only coordinate and values | |
void | Append (unsigned int newPoints, unsigned int dim=1) |
const double * | Coords (unsigned int ipoint) const |
return a pointer to the coordinates data for the given fit point | |
const double * | GetCoordComponent (unsigned int ipoint, unsigned int icoord) const |
returns a single coordinate component of a point. | |
const std::vector< const double * > & | GetCoordDataPtrs () const |
direct access to coord data ptrs | |
unsigned int | NDim () const |
return coordinate data dimension | |
unsigned int | NPoints () const |
return number of fit points | |
FitData & | operator= (const FitData &rhs) |
DataOptions & | Opt () |
const DataOptions & | Opt () const |
access to options | |
const DataRange & | Range () const |
access to range | |
unsigned int | Size () const |
return number of fit points | |
Protected Member Functions | |
void | InitCoordsVector () |
initializer routines to set the corresponding pointers right The vectors must NOT be resized after this initialization without setting the corresponding pointers in the same moment ( has to be an atomic operation in case of multithreading ). | |
template<class Iterator > | |
void | InitFromRange (Iterator dataItr) |
void | UnWrap () |
Static Protected Member Functions | |
static constexpr unsigned | VectorPadding (const unsigned) |
If VecCore is not defined, there is no vectorization available and the SIMD vector size will always be one. | |
Protected Attributes | |
unsigned int | fDim |
unsigned int | fMaxPoints |
unsigned int | fNPoints |
bool | fWrapped |
Private Attributes | |
std::vector< std::vector< double > > | fCoords |
This vector stores the vectorizable data: The inner vectors contain the coordinates data fCoords[0] is the vector for the x-coords fCoords[1] is the vector for the y-coords etc. | |
std::vector< const double * > | fCoordsPtr |
DataOptions | fOptions |
double * | fpTmpCoordVector |
DataRange | fRange |
#include <Fit/FitData.h>
construct with default option and data range
Definition at line 20 of file FitData.cxx.
|
explicit |
construct passing options and default data range
Definition at line 32 of file FitData.cxx.
|
explicit |
construct passing range and default options
Definition at line 46 of file FitData.cxx.
ROOT::Fit::FitData::FitData | ( | const DataOptions & | opt, |
const DataRange & | range, | ||
unsigned int | maxpoints = 0 , |
||
unsigned int | dim = 1 |
||
) |
construct passing options and data range
Definition at line 59 of file FitData.cxx.
constructor from external data for 1D data
Definition at line 76 of file FitData.cxx.
constructor from external data for 2D data
Definition at line 96 of file FitData.cxx.
ROOT::Fit::FitData::FitData | ( | unsigned int | n, |
const double * | dataX, | ||
const double * | dataY, | ||
const double * | dataZ | ||
) |
constructor from external data for 3D data
Definition at line 117 of file FitData.cxx.
ROOT::Fit::FitData::FitData | ( | const DataRange & | range, |
unsigned int | maxpoints, | ||
const double * | dataX | ||
) |
constructor for multi-dim external data and a range (data are copied inside according to the range) Uses as argument an iterator of a list (or vector) containing the const double * of the data An example could be the std::vector<const double *>::begin
Definition at line 144 of file FitData.cxx.
ROOT::Fit::FitData::FitData | ( | const DataRange & | range, |
unsigned int | maxpoints, | ||
const double * | dataX, | ||
const double * | dataY | ||
) |
constructor for multi-dim external data and a range (data are copied inside according to the range) Uses as argument an iterator of a list (or vector) containing the const double * of the data An example could be the std::vector<const double *>::begin
Definition at line 164 of file FitData.cxx.
ROOT::Fit::FitData::FitData | ( | const DataRange & | range, |
unsigned int | maxpoints, | ||
const double * | dataX, | ||
const double * | dataY, | ||
const double * | dataZ | ||
) |
constructor for multi-dim external data and a range (data are copied inside according to the range) Uses as argument an iterator of a list (or vector) containing the const double * of the data An example could be the std::vector<const double *>::begin
Definition at line 184 of file FitData.cxx.
|
inline |
constructor for multi-dim external data (data are not copied inside) Uses as argument an iterator of a list (or vector) containing the const double * of the data An example could be the std::vector<const double *>::begin In case of weighted data, the external data must have a dim+1 lists of data The passed dim refers just to the coordinate size
|
virtual |
dummy virtual destructor
Definition at line 201 of file FitData.cxx.
ROOT::Fit::FitData::FitData | ( | const FitData & | rhs | ) |
Definition at line 211 of file FitData.cxx.
|
inline |
|
inline |
Definition at line 251 of file FitData.cxx.
|
inline |
|
inlineprotected |
|
inlineprotected |
|
inline |
|
inline |
Definition at line 218 of file FitData.cxx.
|
inline |
|
inline |
|
inline |
|
inline |
|
inlinestaticconstexprprotected |
|
private |
This vector stores the vectorizable data: The inner vectors contain the coordinates data fCoords[0] is the vector for the x-coords fCoords[1] is the vector for the y-coords etc.
The vector of pointers stores the pointers to the first elements of the corresponding elements
If fWrapped is true, fCoords is empty. the data can only be accessed by using fCoordsPtr.
|
private |
|
private |