r73: Added C++ image files
[ctsim.git] / include / ct.h
1 /*****************************************************************************
2 **  This is part of the CTSim program
3 **  Copyright (C) 1983-2000 Kevin Rosenberg
4 **
5 **  $Id: ct.h,v 1.8 2000/06/07 02:30:27 kevin Exp $
6 **  $Log: ct.h,v $
7 **  Revision 1.8  2000/06/07 02:30:27  kevin
8 **  Added C++ image files
9 **
10 **  Revision 1.7  2000/06/07 00:59:38  kevin
11 **  added imagefiles
12 **
13 **  Revision 1.6  2000/05/24 22:48:17  kevin
14 **  First functional version of SDF library for X-window
15 **
16 **  Revision 1.5  2000/05/11 01:04:44  kevin
17 **  Added Microsoft Windows compatibility
18 **
19 **  Revision 1.4  2000/05/03 19:51:41  kevin
20 **  function renaming for phantoms and phantom elements
21 **
22 **  Revision 1.3  2000/04/30 19:17:35  kevin
23 **  Set up include files for conditional SGP
24 **
25 **  Revision 1.2  2000/04/28 14:14:16  kevin
26 **  *** empty log message ***
27 **
28 **
29 **  This program is free software; you can redistribute it and/or modify
30 **  it under the terms of the GNU General Public License (version 2) as
31 **  published by the Free Software Foundation.
32 **
33 **  This program is distributed in the hope that it will be useful,
34 **  but WITHOUT ANY WARRANTY; without even the implied warranty of
35 **  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
36 **  GNU General Public License for more details.
37 **
38 **  You should have received a copy of the GNU General Public License
39 **  along with this program; if not, write to the Free Software
40 **  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
41 ******************************************************************************/
42 /*---------------------------------------------------------------------*/
43 /*                  HEADER FILE FOR TOMOGRAPY SYSTEM                   */
44 /*---------------------------------------------------------------------*/
45
46 #ifndef CT_H
47 #define CT_H
48
49 #ifdef _WIN32
50   typedef long off_t;
51   #define HAVE_STRING_H 1
52   #include <fcntl.h>
53   #define snprintf _snprintf
54   #define vsnprintf _vsnprintf
55   #define strcasecmp stricmp
56   #define strncasecmp strnicmp
57 #endif
58
59 #ifdef HAVE_CONFIG_H
60 #include <config.h>
61 #endif
62 #ifdef HAVE_PNG
63 #include "png.h"
64 #endif
65 #ifdef HAVE_G2_H
66 #include "g2.h"
67 #ifdef HAVE_X11
68 #include "g2_X11.h"
69 #endif
70 #endif
71 #ifdef HAVE_STDIO_H
72 #include <stdio.h>
73 #endif
74 #ifdef HAVE_STRING_H
75 #include <string.h>
76 #endif
77 #ifdef HAVE_STDDEF_H
78 #include <stddef.h>
79 #endif
80 #ifdef HAVE_STDLIB_H
81 #include <stdlib.h>
82 #endif
83 #ifdef HAVE_STDARG_H
84 #include <stdarg.h>
85 #endif
86 #ifdef  HAVE_SYS_TYPES_H
87 #include <sys/types.h>
88 #endif
89 #ifdef HAVE_SYS_STAT_H
90 #include <sys/stat.h>
91 #endif
92 #ifdef HAVE_CTYPE_H
93 #include <ctype.h>
94 #endif
95 #ifdef HAVE_MATH_H
96 #include <math.h>
97 #endif
98 #ifdef HAVE_SYS_FCNTL_H
99 #include <sys/fcntl.h>
100 #endif
101 #ifdef HAVE_FCNTL_H
102 #include <fcntl.h>
103 #endif
104 #if defined(HAVE_GETOPT_H) || defined(HAVE_GETOPT_LONG)
105 #include <getopt.h>
106 #endif
107 #ifdef HAVE_UNISTD_H
108 #include <unistd.h>
109 #endif
110 #ifdef HAVE_SETJMP_H
111 #include <setjmp.h>
112 #endif
113 #ifdef HAVE_SYS_PARAM_H
114 #include <sys/param.h>          /* for htonl on FreeBSD */
115 #endif
116 #ifdef HAVE_NETINET_IN_H
117 #include <netinet/in.h>         /* for htonl on Linux/Solaris */
118 #endif
119 #ifdef HAVE_INTTYPES_H
120 #include <inttypes.h>           /* for htonl on Solaris */
121 #endif
122 #ifdef HAVE_STDINT_H
123 #include <stdint.h>             /* Standard ints on Linux */
124 #endif
125
126 #ifdef MPI_CT
127 #include "mpi.h"
128 #endif
129
130 #include "kstddef.h"
131 #include "kmath.h"
132 #include "sdf.h"
133 #include "ir.h"
134 #include "keyboard.h"
135 #include "cio.h"
136
137 #ifdef HAVE_SGP
138   #include "ezplot.h"
139   #include "sgp.h"
140 #endif
141
142 #ifdef __cplusplus
143   #include <iostream>
144   #include <string>
145
146   using namespace std;
147
148   #include "array2d.h"
149   #include "imagefile.h"
150 #endif
151
152 #endif
153