-
Notifications
You must be signed in to change notification settings - Fork 0
/
DgIDGGS4H.h
61 lines (42 loc) · 1.97 KB
/
DgIDGGS4H.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
////////////////////////////////////////////////////////////////////////////////
//
// DgIDGGS4H.h: DgIDGGS4H class definitions
//
// Version 6.1 - Kevin Sahr, 5/23/13
//
////////////////////////////////////////////////////////////////////////////////
#ifndef DGIDGGS4H_H
#define DGIDGGS4H_H
#include "DgRF.h"
#include "DgLocVector.h"
#include "DgIDGGS.h"
#include "DgIVec2D.h"
////////////////////////////////////////////////////////////////////////////////
////////////////////////////////////////////////////////////////////////////////
class DgIDGGS4H : public DgIDGGS {
public:
DgIDGGS4H (DgRFNetwork& networkIn, const DgGeoSphRF& backFrameIn,
const DgGeoCoord& vert0, long double azDegs, int nResIn = 1,
const string& nameIn = "ISEA4H", const string& projType = "ISEA")
: DgIDGGS (networkIn, backFrameIn, vert0, azDegs, 4, nResIn,
"HEXAGON", nameIn, projType, false, 0, false)
{ frequency_ = sqrt((long double) aperture()); }
DgIDGGS4H (const DgIDGGS4H& rf);
~DgIDGGS4H (void);
DgIDGGS4H& operator= (const DgIDGGS4H& rf);
long double frequency (void) const { return frequency_; }
protected:
long double frequency_;
// pure virtual functions from DgDiscRFS
virtual void setAddParents (const DgResAdd<DgQ2DICoord>& add,
DgLocVector& vec) const;
virtual void setAddInteriorChildren (const DgResAdd<DgQ2DICoord>& add,
DgLocVector& vec) const;
virtual void setAddBoundaryChildren (const DgResAdd<DgQ2DICoord>& add,
DgLocVector& vec) const;
virtual void setAddAllChildren (const DgResAdd<DgQ2DICoord>& add,
DgLocVector& vec) const;
};
////////////////////////////////////////////////////////////////////////////////
////////////////////////////////////////////////////////////////////////////////
#endif