bes Updated for version 3.21.1
The Backend Server (BES) is the lower two tiers of the Hyrax data server
HE5Swath.h
1#ifndef _HE5Swath_H
2#define _HE5Swath_H
3#include "HE5Var.h"
4
5
6struct HE5Swath {
7
8 public:
9 std::string name;
10 std::vector<HE5Dim> dim_list;
11 std::vector<HE5Var> geo_var_list;
12 std::vector<HE5Var> data_var_list;
13};
14
15#endif