EleFits  4.0.0
A modern C++ API on top of CFitsIO

◆ readSeq() [2/2]

template<typename... Ts>
std::tuple<VecColumn<Ts>...> Euclid::Fits::BintableColumns::readSeq ( const Indexed< Ts > &...  indices) const

Read the columns with given indices.

Example usage:

auto columns = ext.readSeq(Named<int>("A"), Named<float>("B"), Named<std::string>("C"));
auto columns = ext.read(Indexed<int>(0), Indexed<float>(3), Indexed<std::string>(4));