CASToR  3.2
Tomographic Reconstruction (PET/SPECT/CT)
include/dynamic/iLinearSpectralModel.hh
Go to the documentation of this file.
1 
8 #ifndef ILINEARSPECTRALMODEL_HH
9 #define ILINEARSPECTRALMODEL_HH 1
10 
11 // Mother class of dynamic model
12 #include "vDynamicModel.hh"
13 // Required to automatically add the class in the CASToR code
14 #include "sAddonManager.hh"
15 
16 // Inherit from Generic Linear Model
17 #include "iLinearModel.hh"
18 
25 {
26  // -----------------------------------------------------------------------------------------
27  // Constructor & Destructor
28  public:
39 
40 
41  // -----------------------------------------------------------------------------------------
42  // Public member functions related to the initialization of the model
43  public:
44  // Function for automatic insertion (put the class name as the parameters and do not add semi-colon at the end of the line)
65  int ReadAndCheckOptionsList(string a_listOptions);
72  int InitializeSpecific();
77  void ShowHelpModelSpecific();
78 
79 
80  // -----------------------------------------------------------------------------------------
81  // Public member functions called by the main iterative algorithm class
82 
83 
84  // -----------------------------------------------------------------------------------------
85  // Data members
86  protected:
87 
88  //int m_OptimisationMethod; /*!<Flag indicating the method to estimate Patlak parameters. */
97 };
98 
99 // Class for automatic insertion (set here the visible dynamic model's name, put the class name as the parameters and do not add semi-colon at the end of the line)
101 
102 #endif
int ReadAndCheckOptionsList(string a_listOptions)
This class is a child of the iLinearModel class implementing the Nested Spectral reconsutction.
iLinearSpectralModel()
Constructor of iLinearSpectralModel. Simply set all data members to default values.
int InitializeSpecific()
This function is used to initialize the model parametric images and basis functions.
This class implements a general linear dynamic model applied between the images of a dynamic acquisit...
~iLinearSpectralModel()
Destructor of iLinearSpectralModel.
#define FUNCTION_DYNAMICMODEL(CLASS)
#define CLASS_DYNAMICMODEL(NAME, CLASS)
int CheckSpecificParameters()
This function is used to check whether all member variables have been correctly initialized or not...
int ReadAndCheckConfigurationFileSpecific()
This function is used to read options from a configuration file, specific to this model...
Declaration of class iLinearModel.
Declaration of class vDynamicModel.
void ShowHelpModelSpecific()
This function is used to print out specific help about the dynamic model and its options. It is pure virtual so must be implemented by children.