bes Updated for version 3.21.1
The Backend Server (BES) is the lower two tiers of the Hyrax data server
HE5Var.h
1#ifndef _HE5Var_H
2#define _HE5Var_H
3
4#include <vector>
5#include "HE5Dim.h"
6
7
8struct HE5Var {
9 std::string name;
10 std::vector<HE5Dim> dim_list;
11 // UNCOMMENT OUT the line below to retrieve the maximum dimension list. ALSO NEED TO ADD MAX_DIMENSION_LIST at he5dds.lex
12#if 0
13 //vector<HE5Dim> max_dim_list;
14#endif
15};
16
17#endif
Definition HE5Var.h:8