r557: no message
[ctsim.git] / include / reconstruct.h
1 /*****************************************************************************
2 ** FILE IDENTIFICATION
3 **
4 **   Name:         reconstruct.h          Header file for Reconstruction class
5 **   Programmer:   Kevin Rosenberg
6 **   Date Started: Aug 84
7 **
8 **  This is part of the CTSim program
9 **  Copyright (c) 1983-2001 Kevin Rosenberg
10 **
11 **  $Id: reconstruct.h,v 1.6 2001/02/20 04:48:45 kevin Exp $
12 **
13 **  This program is free software; you can redistribute it and/or modify
14 **  it under the terms of the GNU General Public License (version 2) as
15 **  published by the Free Software Foundation.
16 **
17 **  This program is distributed in the hope that it will be useful,
18 **  but WITHOUT ANY WARRANTY; without even the implied warranty of
19 **  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
20 **  GNU General Public License for more details.
21 **
22 **  You should have received a copy of the GNU General Public License
23 **  along with this program; if not, write to the Free Software
24 **  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
25 ******************************************************************************/
26
27 #ifndef __RECONSTRUCT_H
28 #define __RECONSTRUCT_H
29
30
31 class Projections;
32 class ImageFile;
33 class Backprojector;
34 class ProcessSignal;
35
36 #include <string>
37
38 class Reconstructor 
39 {
40  private:
41     const Projections& m_rProj;
42     ImageFile& m_rImagefile;
43     ProcessSignal* m_pProcessSignal;
44     Backprojector* m_pBackprojector;
45     int m_nFilteredProjections;
46     int m_iTrace;
47
48     bool m_bFail;
49     std::string m_strFailMessage;
50
51     double* m_adPlotXAxis;
52
53  public:
54     Reconstructor (const Projections& rProj, ImageFile& rIF, const char* const filterName, double filt_param, const char* const filterMethodName, const int zeropad, const char* filterGenerationName, const char* const interpName, int interpFactor, const char* const backprojectName, const int trace, SGP* pSGP = NULL);
55
56     ~Reconstructor ();
57
58     bool fail() const {return m_bFail;}
59     const std::string& failMessage() const {return m_strFailMessage;}
60     
61     void plotFilter (SGP* pSGP = NULL);
62
63     void reconstructAllViews ();
64
65     void reconstructView (int iStartView = 0, int iViewCount = -1, SGP* pSGP = NULL, bool bBackprojectView = true, double dGraphWidth = 1.);
66 };
67
68 #endif