Functions | |
template<typename Vect > | |
void | FillVector (Vect const &source, std::vector< double > &dest) |
Converts a vector into STL vector. More... | |
template<typename Vect > | |
void | FillVector (Vect const &source, double *dest) |
Converts a vector into a C array. More... | |
template<typename SrcVect , typename DestVect > | |
void | FillTwoVectors (SrcVect const &firstSource, SrcVect const &secondSource, DestVect &&firstDest, DestVect &&secondDest) |
Converts two vectors into another type of vector using FillVector. More... | |
void recob::details::legacy::FillTwoVectors | ( | SrcVect const & | firstSource, |
SrcVect const & | secondSource, | ||
DestVect && | firstDest, | ||
DestVect && | secondDest | ||
) |
Converts two vectors into another type of vector using FillVector.
void recob::details::legacy::FillVector | ( | Vect const & | source, |
std::vector< double > & | dest | ||
) |
Converts a vector into STL vector.
void recob::details::legacy::FillVector | ( | Vect const & | source, |
double * | dest | ||
) |
Converts a vector into a C array.