source: trunk/src/Cubes/WriteMomentMapArray.hh @ 1120

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

Ticket #170, #105 - The bulk of the work allowing this to happen. Have implemented different classes for each of the output types, including the baselines (which required new parameters etc.) Not yet implemented in mainDuchamp, so needs testing.

File size: 699 bytes
Line 
1#ifndef DUCHAMP_WRITE_MOMENTMAP_ARRAY_HH_
2#define DUCHAMP_WRITE_MOMENTMAP_ARRAY_HH_
3
4#include <duchamp/duchamp.hh>
5#include <duchamp/Cubes/WriteArray.hh>
6#include <duchamp/Cubes/cubes.hh>
7
8namespace duchamp {
9
10  class WriteMomentMapArray : public WriteArray
11  {
12  public:
13    WriteMomentMapArray();
14    WriteMomentMapArray(Cube *cube);
15    WriteMomentMapArray(const WriteMomentMapArray& other);
16    WriteMomentMapArray(const WriteArray& base);
17    WriteMomentMapArray& operator= (const WriteMomentMapArray& other);
18    WriteMomentMapArray& operator= (const WriteArray& other);
19    virtual ~WriteMomentMapArray(){};
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.