source: tags/asap-3.1.0/src/NROFiller.h@ 2803

Last change on this file since 2803 was 1904, checked in by Malte Marquarding, 14 years ago

pass down record for filler options

File size: 1.4 KB
Line 
1//
2// C++ Interface: NROFiller
3//
4// Description:
5//
6// This class is a concrete class that derives from FillerBase class.
7// The class implements the following methods to be able to read NRO
8// data (45m and ASTE).
9//
10// open()
11// close()
12// fill()
13//
14// The fill() method usually iterates over the source data and calls
15// the setXYZ() methods for. After all the data for a row has been set via
16// these methods, the fill() method needs to call commitRow() to write the
17// data to the scantable.
18// All arguments which are defaulted in the setXYZ() methods are optional. All
19// others should be set explicitly.
20//
21// Author: Takeshi Nakazato <takeshi.nakazato@nao.ac.jp>, (C) 2010
22//
23// Copyright: See COPYING file that comes with this distribution
24//
25//
26#ifndef ASAPNROFILLER_H
27#define ASAPNROFILLER_H
28
29#include "FillerBase.h"
30
31// STL
32#include <string>
33#include <vector>
34// AIPS++
35#include <casa/aips.h>
36#include <atnf/PKSIO/NROReader.h>
37
38namespace asap
39{
40
41class NROFiller : public FillerBase
42{
43 public:
44 explicit NROFiller(casa::CountedPtr<Scantable> stable);
45 virtual ~NROFiller();
46
47 bool open(const std::string& filename, const casa::Record& rec) ;
48 void fill() ;
49 void close() ;
50
51 protected:
52
53 private:
54 NROFiller();
55 NROFiller(const NROFiller&);
56 NROFiller& operator=(const NROFiller&);
57
58 // pointer to the reader
59 //NROReader *reader_ ;
60 casa::CountedPtr<NROReader> reader_ ;
61};
62
63
64}
65#endif
Note: See TracBrowser for help on using the repository browser.