r101: *** empty log message ***
[ctsim.git] / include / projections.h
1 /*****************************************************************************
2 ** FILE IDENTIFICATION
3 **
4 **   Name:          projections.h
5 **   Purpose:       Header file for Projections class
6 **   Programmer:    Kevin Rosenberg
7 **   Date Started:  July 1, 1984
8 **
9 **  This is part of the CTSim program
10 **  Copyright (C) 1983-2000 Kevin Rosenberg
11 **
12 **  $Id: projections.h,v 1.2 2000/06/19 17:58:20 kevin Exp $
13 **
14 **
15 **  This program is free software; you can redistribute it and/or modify
16 **  it under the terms of the GNU General Public License (version 2) as
17 **  published by the Free Software Foundation.
18 **
19 **  This program is distributed in the hope that it will be useful,
20 **  but WITHOUT ANY WARRANTY; without even the implied warranty of
21 **  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
22 **  GNU General Public License for more details.
23 **
24 **  You should have received a copy of the GNU General Public License
25 **  along with this program; if not, write to the Free Software
26 **  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
27 ******************************************************************************/
28
29 #ifndef PROJECTIONS_H
30 #define PROJECTIONS_H
31
32 class Scanner;
33 class DetectorArray;
34
35 // Projections
36 class Projections
37 {
38  public:
39   Projections (const int nView, const int nDet);
40   Projections (const Scanner& scanner);
41   Projections (void);
42   ~Projections (void);
43
44   void initFromScanner (const Scanner& scanner);
45
46   void printProjectionData (void);
47   void printScanInfo (void) const;
48
49   bool read (const char* fname);
50   bool write (const char* fname);
51   bool detarrayRead (DetectorArray& darray, const int view_num);
52   bool detarrayWrite (const DetectorArray& darray, const int view_num);
53
54   void setNView (int nView);  // used in MPI to restrict # of views
55   void setRotInc (double rotInc) { m_rotInc = rotInc;}
56   void setDetInc (double detInc) { m_detInc = detInc;}
57   void setPhmLen (double phmLen) { m_phmLen = phmLen;}
58   void setCalcTime (double calcTime) {m_calcTime = calcTime;}
59   void setRemark (const char* remark) {m_remark = remark;}
60   void setRemark (const string remark) {m_remark = remark;}
61
62   const double detStart(void) const {return m_detStart;}
63   const double rotStart(void) const {return m_rotStart;}
64   const double calcTime(void) const {return m_calcTime;}
65   const double phmLen(void) const {return m_phmLen;}
66   const char*  remark(void) const {return m_remark.c_str();}
67   const double detInc(void) const {return m_detInc;}
68   const double rotInc(void) const {return m_rotInc;}
69   const int nDet(void) const {return m_nDet;}
70   const int nView(void) const {return m_nView;}
71   DetectorArray& getDetectorArray (const int iview)
72       { return (*m_projData[iview]); }
73   
74  private:
75   int m_fd;                     // Disk file descriptor 
76   int m_headerSize;             // Size of disk file header 
77   int m_geometry;               // Geometry of scanner 
78   struct DetectorArray **m_projData;    // Pointer to array of detarray_st pointers 
79   string m_remark;              // description of raysum data 
80   int m_nDet;                   // number of detectors in array 
81   int m_nView;                  // number of rotated views 
82   double m_calcTime;            // time required to calculate raysums 
83   double m_rotStart;            // starting view rotation
84   double m_rotInc;              // angle between rotations 
85   double m_detStart;            // distance of beginning detector to center phantom
86   double m_detInc;              // increment between detectors 
87   double m_phmLen;              // Length of phantom edge (phm is square) 
88
89   bool headerRead (void);
90   bool headerWrite (void);
91   void newProjData (void);
92   void deleteProjData (void);
93
94   void init (const int nView, const int nDet);
95 };
96
97
98 #endif