aboutsummaryrefslogtreecommitdiff
path: root/src/IsoSurfacerGH.h
blob: 63194a91dd41916183e2859eea48e69bf2692570 (plain)
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
//   The extensions to the GH structure from IsoSurfacer.
#ifndef __IsoSurface_GH_h_
#define __IsoSurface_GH_h_

#define BIN      1
#define ASCII    2
#define UCD      4
#define VRML     8
#define SOCK     16
#define ISOHDF5  32
#define NONE     64

typedef struct isosurfacerGH
{
  char       *funcName;
  CCTK_REAL4 isovalue;
  short int   formats;
  short int   outfreq;
  short int   firstIteration;
  short int   resolution;
  short int   uniq_verts;
  short int   RunIsoSurfacer;
} isosurfacerGH;

typedef isosurfacerGH isoparms_st;

#endif // __IsoSurface_GH_h_