11#ifndef NGC_CORE_NGCDCS_TS_TABLE_H_
12#define NGC_CORE_NGCDCS_TS_TABLE_H_
43 void Add(
int cnt,
double ts);
62 void Append(std::string filename);
68 std::vector<int> m_cnt;
71 std::vector<double> m_ts;
78 void CreateHeader(std::shared_ptr<ngcbFITS> hdr);
87 void WriteExtension(FILE *fd, std::shared_ptr<ngcbFITS> extension);
TsTable & operator=(TsTable &)=delete
virtual ~TsTable()
Destructor.
Definition ngcdcsTsTable.cpp:19
TsTable()
Constructor.
Definition ngcdcsTsTable.cpp:17
void Write(FILE *fd)
Definition ngcdcsTsTable.cpp:117
void Clear()
Clear binary table container.
Definition ngcdcsTsTable.cpp:26
void Append(std::string filename)
Definition ngcdcsTsTable.cpp:140
TsTable(TsTable &)=delete
Disables unused constructors and operators.
TsTable(TsTable &&)=delete
void Add(int cnt, double ts)
Definition ngcdcsTsTable.cpp:21
Definition ngcdcsTsTable.hpp:19