source: trunk/src/PKSFiller.h @ 3106

Last change on this file since 3106 was 3106, checked in by Takeshi Nakazato, 8 years ago

New Development: No

JIRA Issue: No

Ready for Test: Yes/No?

Interface Changes: Yes/No?

What Interface Changed: Please list interface changes

Test Programs: List test programs

Put in Release Notes: Yes/No?

Module(s): Module Names change impacts.

Description: Describe your changes here...


Check-in asap modifications from Jim regarding casacore namespace conversion.

File size: 1.0 KB
Line 
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
22
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(casacore::CountedPtr<Scantable> stable);
35    virtual ~PKSFiller();
36
37    bool open(const std::string& filename, const casacore::Record& rec);
38    //    bool open(const std::string& filename);
39    void fill();
40    void close();
41
42
43  private:
44
45    PKSFiller();
46    PKSFiller(const PKSFiller&);
47    PKSFiller& operator=(const PKSFiller&);
48
49    casacore::CountedPtr<PKSreader> reader_;
50    casacore::String filename_;
51    casacore::Int nIF_, nBeam_, nPol_, nChan_, nInDataRow;
52    casacore::Vector<casacore::Bool> haveXPol_;
53};
54
55
56};
57#endif
Note: See TracBrowser for help on using the repository browser.