OpenAtom  Version1.5a
para_grp_parse.h
1 /** \file para_grp_parse.h
2  *
3  */
4 
5 
6 #ifndef _PARA_GRP_PARSE_
7 #define _PARA_GRP_PARSE_
8 
9 #ifndef MAX
10 #define MAX(A,B) (((A)>(B))?(A):(B))
11 #endif
12 
13 #ifndef MIN
14 #define MIN(A,B) (((A)<(B))?(A):(B))
15 #endif
16 
17 #ifndef PRINTF
18 #define PRINTF printf
19 //#define PRINTF CkPrintf
20 #endif
21 
22 #ifndef EXIT
23 #define EXIT(N) {exit(N);}
24 //#define EXIT(N) {CkExit();}
25 #endif
26 
27 #include "ckcomplex.h"
28 
29 class ParaGrpParse{
30 
31  //---------------------------------------------------------------------------
32  public:
33 
34  //---------------------------------------------------------------------------
35  ///on-destruct:
37  ~ParaGrpParse(){};
38 
39 //---------------------------------------------------------------------------
40 /// functions
41 static void get_chareG_line_prms(int , int ,int ,int *,int *,int *,int *,int *,
42  bool);
43 
44 static void flip_data_set(int , int *, int *, int *, int *,complex *,int);
45 
46 //---------------------------------------------------------------------------
47  }; //ParaGrpParse
48 ///////////////////////////////////////////////////////////////////////////=
49 
50 #endif
ParaGrpParse()
on-destruct:
static void get_chareG_line_prms(int, int, int, int *, int *, int *, int *, int *, bool)
functions
static void flip_data_set(int, int *, int *, int *, int *)