mararrays.h

Go to the documentation of this file.
00001 /***********************************************************************
00002  *
00003  * mar345: mararrays.h
00004  *
00005  * Copyright by:        Dr. Claudio Klein
00006  *                      X-ray Research GmbH, Hamburg
00007  *
00008  * Version:     3.0
00009  * Date:        31/10/2000
00010  *
00011  ***********************************************************************/
00012 
00013 #define MAX_SIZE        3450
00014 typedef union {
00015         unsigned int    i4_img  [MAX_SIZE*MAX_SIZE];
00016         unsigned short  i2_img  [MAX_SIZE*MAX_SIZE];
00017 } UIMG;
00018 
00019 #ifdef MAR_GLOBAL
00020 UIMG                    u;
00021 #else
00022 extern UIMG             u;
00023 #endif
00024