Initial snark14m import
[snark14.git] / src / snark / region.h
1 /* 
2  ***********************************************************
3  $SNARK_Header: S N A R K  1 4 - A PICTURE RECONSTRUCTION PROGRAM $
4  $HeadURL: svn://dig.cs.gc.cuny.edu/snark/trunk/src/snark/region.h $
5  $LastChangedRevision: 94 $
6  $Date: 2014-07-02 18:53:30 -0400 (Wed, 02 Jul 2014) $
7  $Author: agulati $
8  ***********************************************************
9  */
10
11 #ifndef REGION_H
12 #define REGION_H
13
14 #include "blkdta.h"
15 /*
16  common /region/ ix1,ix2,iy1,iy2,xd0,yd0,d1,d2,aplus,bplus,asq,bsq
17  */
18
19 extern class region_class
20 {
21 public:
22         INTEGER ix1;
23         INTEGER ix2;
24         INTEGER iy1;
25         INTEGER iy2;
26         REAL xd0;
27         REAL yd0;
28         REAL d1;
29         REAL d2;
30         REAL aplus;
31         REAL bplus;
32         REAL asq;
33         REAL bsq;
34 } Region;
35
36 #endif