Initial snark14m import
[snark14.git] / src / snark / anglst.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/anglst.h $
5  $LastChangedRevision: 85 $
6  $Date: 2014-07-02 16:07:08 -0400 (Wed, 02 Jul 2014) $
7  $Author: agulati $
8  ***********************************************************
9
10  anglst.h,v 1.3 2008/09/25 13:17:44 jklukowska Exp
11  */
12
13 #ifndef ANGLST_H
14 #define ANGLST_H
15
16 #include "geom.h"
17
18 extern class anglst_class
19 {
20 public:
21         REAL* bth;REAL* bsin;REAL* bcos;REAL* sphi;REAL* cphi;REAL* pbase;INTEGER incore;
22
23 public:
24         void Init(INTEGER prjnum);
25         void InitDiv(REAL* pang, INTEGER prjnum);
26         void genphi();
27         void getang(INTEGER np, REAL* theta, REAL* sinth, REAL* costh);
28
29         REAL prdta(INTEGER np, INTEGER nr);
30         ~anglst_class();
31
32 } Anglst;
33
34 #endif