58 typedef std::unordered_multimap<std::string, headerIterator>::iterator
mapIterator;
65 std::list<fitsHeaderCard>
cards;
70 std::unordered_multimap<std::string, headerIterator>
cardMap;
112 size_t count(
const std::string &keyword );
120 void erase(
const std::string &keyword );
150 template <
typename typeT>
151 void append(
const std::string &k,
const typeT &v,
const std::string &c );
160 template <
typename typeT>
161 void append(
const std::string &k,
const typeT &v );
168 void append(
const std::string &k );
193 template <
typename typeT>
205 template <
typename typeT>
226 template <
typename typeT>
238 template <
typename typeT>
315std::optional<std::vector<size_t>>
headersToValues( std::vector<dataT> &v, std::vector<fitsHeader> &heads,
const std::string &keyw )
317 v.resize( heads.size() );
318 std::vector<size_t> bad;
319 for(
size_t i = 0; i < heads.size(); ++i )
323 v[i] = heads[i][keyw].value<dataT>();
328 v[i] = std::numeric_limits<dataT>::max();
void fitsHeaderGitStatus(fitsHeader &head, const std::string &repoName, const char *sha1, int modified)
Write the status of a Git repository to HISTORY in a FITS header.
std::optional< std::vector< size_t > > headersToValues(std::vector< dataT > &v, std::vector< fitsHeader > &heads, const std::string &keyw)
Convert the values in a std::vector of fits headers into a std::vector of values.