OSDN Git Service

recompiled for cuda:
[eos/hostdependX86LINUX64.git] / src / Tools / pdbUtil / pdbListVectorCalc / src / pdbListVectorCalc.c
1 /*
2 # pdbListVectorCalc : $Revision$  
3 # $Date$ 
4 # Created by $Author$
5 # Usage : pdbListVectorCalc
6 # Attention
7 #   $Loccker$
8 #       $State$ 
9 #
10 */
11 #include <stdio.h>
12 #include <stdlib.h>
13 #include <string.h>
14 #include <math.h>                  
15 #define GLOBAL_DECLARATION
16 #include "../inc/config.h"
17
18 #define DEBUG
19 #include "genUtil.h"
20 #include "pdbFile.h"
21
22 /*
23 Example:
24 typedef struct lpdbListVectorCalcInfo {
25         float a;
26         int   b;
27 } lpdbListVectorCalcInfo;
28
29 typedef enum lpdbListVectorCalcMode {
30         a=0,
31         b=1
32 } lpdbListVectorCalcMode;
33 */
34
35 int
36 main(int argc, char* argv[]) 
37 {
38         pdbListVectorCalcInfo info;
39
40         init0(&info);
41     argCheck(&info, argc, argv);
42     init1(&info);
43
44         DEBUGPRINT("Program Start\n");
45         DEBUGPRINT("Not supported yet. Under construction\n");
46
47         exit(EXIT_SUCCESS);
48 }
49
50 void
51 additionalUsage()
52 {
53         fprintf(stderr, "----- Additional Usage -----\n");
54 }