source: trunk/src/STWeather.h@ 851

Last change on this file since 851 was 849, checked in by mar637, 19 years ago

added assignment operator and additional constructor

File size: 1.4 KB
Line 
1//
2// C++ Interface: STWeather
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 ASAPSTWEATHER_H
13#define ASAPSTWEATHER_H
14
15#include <casa/aips.h>
16#include <casa/BasicSL/String.h>
17#include <tables/Tables/Table.h>
18#include <tables/Tables/ScalarColumn.h>
19
20#include "STSubTable.h"
21
22namespace asap {
23
24/**
25The Weather subtable of the Scantable
26
27@author Malte Marquarding
28*/
29class STWeather : public STSubTable {
30public:
31 STWeather() {;}
32 STWeather(casa::Table tab);
33 STWeather( const Scantable& parent);
34
35 virtual ~STWeather();
36
37 STWeather& operator=(const STWeather& other);
38
39 casa::uInt addEntry( casa::Float temperature, casa::Float pressure,
40 casa::Float humidity,
41 casa::Float windspeed, casa::Float windaz);
42
43 void getEntry( casa::Float& temperature, casa::Float& pressure,
44 casa::Float& humidity,
45 casa::Float& windspeed, casa::Float& windaz,
46 casa::uInt id);
47
48private:
49 void setup();
50 static const casa::String name_;
51 //casa::Table table_;
52 //casa::ScalarColumn<casa::uInt> freqidCol_;
53 casa::ScalarColumn<casa::Float> pressureCol_, temperatureCol_,
54 humidityCol_,
55 windspeedCol_, windazCol_;
56};
57
58}
59
60#endif
Note: See TracBrowser for help on using the repository browser.