WXP C++ Library Version 6.74.6
Loading...
Searching...
No Matches
ThetaEData.h
1#ifndef _WINC_THETAEDATA
2#define _WINC_THETAEDATA
3
4namespace WXP {
5 class ThetaEData {
6 float index;
7 float base;
8 float top;
9 float max;
10 float maxp;
11 float min;
12 float minp;
13
14 public:
15 ThetaEData();
16 int init();
17 inline float getIndex(){ return index; };
18 inline float getBase(){ return base; };
19 inline float getTop(){ return top; };
20 inline float getMax(){ return max; };
21 inline float getMaxPres(){ return maxp; };
22 inline float getMin(){ return min; };
23 inline float getMinPres(){ return minp; };
24
25 friend class UpaCalc;
26 friend class SoundParams;
27 };
28}
29#endif
30
This structure holds output data from thetaE calculation.
Definition: ThetaEData.h:5
int init()
Definition: ThetaEData.cc:25
ThetaEData()
Definition: ThetaEData.cc:18
This class does standard computations on upper air data.
Definition: UpaCalc.h:16
All WXP classes fall under the WXP namespace.
Definition: Angle.h:4
This struct computes and stores sounding parameters.
Definition: SoundParams.h:11