source: trunk/src/FitsIO/WriteSmoothArray.hh @ 1441

Last change on this file since 1441 was 1123, checked in by MatthewWhiting, 12 years ago

Moving the code that reads from and writes to FITS files containing reconstructed, momentmap, mask etc arrays to the FitsIO directory, away from Cubes. Updating all include statements as well.

File size: 664 bytes
Line 
1#ifndef DUCHAMP_WRITE_SMOOTH_ARRAY_HH_
2#define DUCHAMP_WRITE_SMOOTH_ARRAY_HH_
3
4#include <duchamp/duchamp.hh>
5#include <duchamp/FitsIO/WriteArray.hh>
6#include <duchamp/Cubes/cubes.hh>
7
8namespace duchamp {
9
10  class WriteSmoothArray : public WriteArray
11  {
12  public:
13    WriteSmoothArray();
14    WriteSmoothArray(Cube *cube);
15    WriteSmoothArray(const WriteSmoothArray& other);
16    WriteSmoothArray(const WriteArray& base);
17    WriteSmoothArray& operator= (const WriteSmoothArray& other);
18    WriteSmoothArray& operator= (const WriteArray& other);
19    virtual ~WriteSmoothArray(){};
20
21    OUTCOME writeHeader();
22    OUTCOME writeData();
23
24  protected:
25
26  };
27
28}
29
30#endif
Note: See TracBrowser for help on using the repository browser.