source: Sophya/trunk/ArchTOIPipe/Kernel/fitstoiwtr.h@ 1368

Last change on this file since 1368 was 1365, checked in by aubourg, 25 years ago

pipeline TOI archeops

File size: 505 bytes
Line 
1// This may look like C code, but it is really -*- C++ -*-
2
3#ifndef FITSTOIWTR_H
4#define FITSTOIWTR_H
5
6#include "toi.h"
7#include "toiprocessor.h"
8#include <string>
9#include <map>
10#include "fitsio.h"
11
12
13class FITSTOIWriter : public TOIProcessor {
14public:
15 FITSTOIWriter(string fn);
16 ~FITSTOIWriter();
17
18 virtual void addInput(string name, TOI* toi);
19
20 //virtual void init();
21 virtual void run();
22
23private:
24 string fname;
25 fitsfile *fptr;
26 int fstatus;
27 vector<TOI*> fwinputs;
28
29};
30
31#endif
Note: See TracBrowser for help on using the repository browser.