X-Git-Url: http://git.kpe.io/?a=blobdiff_plain;ds=sidebyside;f=include%2Fprojections.h;h=a9970b33736201c8efa8e79e1768f4197fc4a684;hb=2d39e823ba389fc68e5317c422b55be006094252;hp=c1302a9df46e5241710198be6128918e07f351d4;hpb=5cf6874680f80d238bf34535d711dc223813f951;p=ctsim.git diff --git a/include/projections.h b/include/projections.h index c1302a9..a9970b3 100644 --- a/include/projections.h +++ b/include/projections.h @@ -9,7 +9,7 @@ ** This is part of the CTSim program ** Copyright (C) 1983-2000 Kevin Rosenberg ** -** $Id: projections.h,v 1.2 2000/06/19 17:58:20 kevin Exp $ +** $Id: projections.h,v 1.4 2000/06/22 10:17:28 kevin Exp $ ** ** ** This program is free software; you can redistribute it and/or modify @@ -48,8 +48,10 @@ class Projections bool read (const char* fname); bool write (const char* fname); - bool detarrayRead (DetectorArray& darray, const int view_num); - bool detarrayWrite (const DetectorArray& darray, const int view_num); + bool detarrayRead (fnetorderstream& fs, DetectorArray& darray, const int view_num); + bool detarrayWrite (fnetorderstream& fs, const DetectorArray& darray, const int view_num); + + bool reconstruct (ImageFile& im, const char* const filterName, double filt_param, const char* const interpName, int interp_param, const char* const backprojName, const int trace); void setNView (int nView); // used in MPI to restrict # of views void setRotInc (double rotInc) { m_rotInc = rotInc;} @@ -72,7 +74,6 @@ class Projections { return (*m_projData[iview]); } private: - int m_fd; // Disk file descriptor int m_headerSize; // Size of disk file header int m_geometry; // Geometry of scanner struct DetectorArray **m_projData; // Pointer to array of detarray_st pointers @@ -88,6 +89,8 @@ class Projections bool headerRead (void); bool headerWrite (void); + bool headerRead (fnetorderstream& fs); + bool headerWrite (fnetorderstream& fs); void newProjData (void); void deleteProjData (void);