X-Git-Url: http://git.kpe.io/?p=ctsim.git;a=blobdiff_plain;f=include%2Fprojections.h;h=b1ee7fe9469fb3ab62d1416eca025fb9b6190088;hp=c1302a9df46e5241710198be6128918e07f351d4;hb=3fba6928127cd65870bdcd96c8114ad5894247ae;hpb=5cf6874680f80d238bf34535d711dc223813f951 diff --git a/include/projections.h b/include/projections.h index c1302a9..b1ee7fe 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.9 2000/07/13 07:03:21 kevin Exp $ ** ** ** This program is free software; you can redistribute it and/or modify @@ -31,6 +31,8 @@ class Scanner; class DetectorArray; +class Array2dFileLabel; + // Projections class Projections @@ -48,8 +50,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 filterMethodName, const int zeropad, 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;} @@ -68,11 +72,17 @@ class Projections const double rotInc(void) const {return m_rotInc;} const int nDet(void) const {return m_nDet;} const int nView(void) const {return m_nView;} + const string& getFilename(void) const {return m_filename;} + Array2dFileLabel& getLabel(void) {return m_label;} + const Array2dFileLabel& getLabel(void) const {return m_label;} + DetectorArray& getDetectorArray (const int iview) { return (*m_projData[iview]); } + const DetectorArray& getDetectorArray (const int iview) const + { 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 @@ -85,13 +95,29 @@ class Projections double m_detStart; // distance of beginning detector to center phantom double m_detInc; // increment between detectors double m_phmLen; // Length of phantom edge (phm is square) + kuint32 m_year; // Creation date & time + kuint32 m_month; + kuint32 m_day; + kuint32 m_hour; + kuint32 m_minute; + kuint32 m_second; + string m_filename; + Array2dFileLabel m_label; + + const static kuint16 m_signature = ('P'*256 + 'J'); bool headerRead (void); bool headerWrite (void); + bool headerRead (fnetorderstream& fs); + bool headerWrite (fnetorderstream& fs); void newProjData (void); void deleteProjData (void); void init (const int nView, const int nDet); + + // prevent default methods + Projections& operator= (const Projections& rhs); // assignment + Projections(const Projections& rhs); // copy };