RTC Toolkit 5.0.0
Loading...
Searching...
No Matches
genericCamera.hpp
Go to the documentation of this file.
1
13#ifndef RTCTK_STANDALONETOOLS_RAWRECORDER_EXTRACTOR_GENERICCAMERA_HPP
14#define RTCTK_STANDALONETOOLS_RAWRECORDER_EXTRACTOR_GENERICCAMERA_HPP
15
16#include "fitsConverterIf.hpp"
17
18#include <CCfits/Table.h>
19
25public:
26 GenericCamera(const std::string& directory, const bool split_files);
27 void WriteData(const PacketData& data) override;
28
29private:
30 // cppcheck-suppress-begin unusedStructMember
31
32 CCfits::Table* m_table_handle;
33 uint64_t m_row;
34
35 // cppcheck-suppress-end unusedStructMember
36};
37
38#endif // RTCTK_STANDALONETOOLS_RAWRECORDER_EXTRACTOR_GENERICCAMERA_HPP
Definition fitsConverterIf.hpp:42
The GenericCamera implements a Camera that saves the packet data, without combining the data into a F...
Definition genericCamera.hpp:24
GenericCamera(const std::string &directory, const bool split_files)
Definition genericCamera.cpp:22
void WriteData(const PacketData &data) override
Write data into the FITS file(s).
Definition genericCamera.cpp:66
Fits converter Interface.
Definition fitsConverterIf.hpp:34