source: trunk/src/PKSFiller.h@ 2175

Last change on this file since 2175 was 2163, checked in by Malte Marquarding, 13 years ago

Remove various compiler warnings

File size: 1.0 KB
RevLine 
[1795]1//
2// C++ Interface: PKSFiller
3//
4// Description:
5//
6
7// Author: Malte Marquarding <asap@atnf.csiro.au>, (C) 2010
8//
9// Copyright: See COPYING file that comes with this distribution
10//
11//
12#ifndef ASAPPKSFILLER_H
13#define ASAPPKSFILLER_H
14
15// STL
16#include <string>
17// AIPS++
18#include <casa/aips.h>
19#include <casa/Utilities/CountedPtr.h>
20#include <casa/Arrays/Vector.h>
21
[1904]22
[1795]23#include "FillerBase.h"
24#include "Scantable.h"
25
26class PKSreader;
27
28namespace asap
29{
30
31class PKSFiller : public FillerBase
32{
33 public:
34 explicit PKSFiller(casa::CountedPtr<Scantable> stable);
35 virtual ~PKSFiller();
36
[1904]37 bool open(const std::string& filename, const casa::Record& rec);
38 // bool open(const std::string& filename);
[1795]39 void fill();
40 void close();
41
[1811]42
[1795]43 private:
44
[1811]45 PKSFiller();
46 PKSFiller(const PKSFiller&);
47 PKSFiller& operator=(const PKSFiller&);
48
[1815]49 casa::CountedPtr<PKSreader> reader_;
[1811]50 casa::String filename_;
51 casa::Int nIF_, nBeam_, nPol_, nChan_, nInDataRow;
52 casa::Vector<casa::Bool> haveXPol_;
[1795]53};
54
55
56};
57#endif
Note: See TracBrowser for help on using the repository browser.