source: trunk/src/STFit.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.

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 1.3 KB
RevLine 
[960]1//
2// C++ Interface: STFit
3//
4// Description:
5//
6//
7// Author: Malte Marquarding <asap@atnf.csiro.au>, (C) 2006
8//
9// Copyright: See COPYING file that comes with this distribution
10//
11//
12#ifndef ASAPSTFIT_H
13#define ASAPSTFIT_H
[468]14
15#include <casa/aips.h>
16#include <casa/BasicSL/String.h>
[960]17#include <tables/Tables/Table.h>
18#include <tables/Tables/ScalarColumn.h>
19#include <tables/Tables/ArrayColumn.h>
[468]20
[960]21#include "STSubTable.h"
[468]22namespace asap {
23
[960]24class STFitEntry;
25/**
26The Fit subtable of the Scantable
27
28@author Malte Marquarding
29*/
30class STFit : public STSubTable {
[468]31public:
[960]32  STFit() {;}
[3106]33  explicit STFit(casacore::Table tab);
[1353]34  explicit STFit( const Scantable& parent);
[468]35
[960]36  virtual ~STFit();
[468]37
[960]38  STFit& operator=(const STFit& other);
[468]39
[3106]40  casacore::uInt addEntry( const STFitEntry& fit, casacore::Int id=-1 );
41  void getEntry( STFitEntry& fit, casacore::uInt id ) const;
[468]42
[3106]43  const casacore::String& name() const { return name_; }
[960]44
[468]45private:
[960]46  void setup();
[3106]47  static const casacore::String name_;
48  casacore::ArrayColumn<casacore::String> funcCol_;
49  casacore::ArrayColumn<casacore::Int> compCol_;
50  casacore::ArrayColumn<casacore::Double> parCol_;
51  //  casacore::ArrayColumn<casacore::Double> errCol_;
52  casacore::ArrayColumn<casacore::Bool> maskCol_;
53  casacore::ArrayColumn<casacore::String> frameCol_;
[468]54};
55
[960]56}
[468]57
58#endif
Note: See TracBrowser for help on using the repository browser.