Medical Imaging Interaction Toolkit  2023.04.00
Medical Imaging Interaction Toolkit
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Modules Pages
mitkExtendedToftsModel.h
Go to the documentation of this file.
1 /*============================================================================
2 
3 The Medical Imaging Interaction Toolkit (MITK)
4 
5 Copyright (c) German Cancer Research Center (DKFZ)
6 All rights reserved.
7 
8 Use of this source code is governed by a 3-clause BSD license that can be
9 found in the LICENSE file.
10 
11 ============================================================================*/
12 
13 #ifndef mitkExtendedToftsModel_h
14 #define mitkExtendedToftsModel_h
15 
16 #include "mitkAIFBasedModelBase.h"
18 
19 namespace mitk
20 {
29  {
30 
31  public:
36 
38  itkFactorylessNewMacro(Self);
39  itkCloneMacro(Self);
40 
42  itkTypeMacro(ExtendedToftsModel, ModelBase);
43 
44  static const std::string MODEL_DISPLAY_NAME;
45 
46  static const std::string NAME_PARAMETER_Ktrans;
47  static const std::string NAME_PARAMETER_ve;
48  static const std::string NAME_PARAMETER_vp;
49 
50  static const std::string UNIT_PARAMETER_Ktrans;
51  static const std::string UNIT_PARAMETER_ve;
52  static const std::string UNIT_PARAMETER_vp;
53 
54  static const unsigned int POSITION_PARAMETER_Ktrans;
55  static const unsigned int POSITION_PARAMETER_ve;
56  static const unsigned int POSITION_PARAMETER_vp;
57 
58  static const unsigned int NUMBER_OF_PARAMETERS;
59 
60  std::string GetModelDisplayName() const override;
61 
62  std::string GetModelType() const override;
63 
64  ParameterNamesType GetParameterNames() const override;
65  ParametersSizeType GetNumberOfParameters() const override;
66 
67  ParamterUnitMapType GetParameterUnits() const override;
68 
69  ParameterNamesType GetDerivedParameterNames() const override;
70 
71  ParametersSizeType GetNumberOfDerivedParameters() const override;
72  ParamterUnitMapType GetDerivedParameterUnits() const override;
73 
74 
75  protected:
77  ~ExtendedToftsModel() override;
78 
83  itk::LightObject::Pointer InternalClone() const override;
84 
85  ModelResultType ComputeModelfunction(const ParametersType& parameters) const override;
86 
87  DerivedParameterMapType ComputeDerivedParameters(const mitk::ModelBase::ParametersType&
88  parameters) const override;
89 
90 
91  void PrintSelf(std::ostream& os, ::itk::Indent indent) const override;
92 
93  private:
94 
95 
96  //No copy constructor allowed
97  ExtendedToftsModel(const Self& source);
98  void operator=(const Self&); //purposely not implemented
99 
100 
101 
102 
103  };
104 }
105 
106 #endif
mitk::ModelTraitsInterface::ParamterUnitMapType
std::map< ParameterNameType, std::string > ParamterUnitMapType
Definition: mitkModelTraitsInterface.h:40
MITKPHARMACOKINETICS_EXPORT
#define MITKPHARMACOKINETICS_EXPORT
Definition: MitkPharmacokineticsExports.h:15
mitk::ExtendedToftsModel::POSITION_PARAMETER_vp
static const unsigned int POSITION_PARAMETER_vp
Definition: mitkExtendedToftsModel.h:56
mitk::ExtendedToftsModel
Implementation of the Model function of the Tofts pharmacokinetic model, using an Aterial Input Funct...
Definition: mitkExtendedToftsModel.h:28
mitk::ExtendedToftsModel::UNIT_PARAMETER_ve
static const std::string UNIT_PARAMETER_ve
Definition: mitkExtendedToftsModel.h:51
mitk::ExtendedToftsModel::NAME_PARAMETER_Ktrans
static const std::string NAME_PARAMETER_Ktrans
Definition: mitkExtendedToftsModel.h:46
mitk::ModelBase::ParameterNamesType
ModelTraitsInterface::ParameterNamesType ParameterNamesType
Definition: mitkModelBase.h:64
mitk::ExtendedToftsModel::Pointer
itk::SmartPointer< Self > Pointer
Definition: mitkExtendedToftsModel.h:34
mitk::ModelBase::ModelResultType
ModelTraitsInterface::ModelResultType ModelResultType
Definition: mitkModelBase.h:55
mitkAIFBasedModelBase.h
mitk::ExtendedToftsModel::MODEL_DISPLAY_NAME
static const std::string MODEL_DISPLAY_NAME
Definition: mitkExtendedToftsModel.h:42
mitk::ExtendedToftsModel::NAME_PARAMETER_vp
static const std::string NAME_PARAMETER_vp
Definition: mitkExtendedToftsModel.h:48
mitk::ExtendedToftsModel::NAME_PARAMETER_ve
static const std::string NAME_PARAMETER_ve
Definition: mitkExtendedToftsModel.h:47
mitk::ModelBase::ParametersType
ModelTraitsInterface::ParametersType ParametersType
Definition: mitkModelBase.h:59
mitk::ExtendedToftsModel::POSITION_PARAMETER_ve
static const unsigned int POSITION_PARAMETER_ve
Definition: mitkExtendedToftsModel.h:55
itk::SmartPointer< Self >
mitk::ModelBase::DerivedParameterMapType
std::map< ParameterNameType, DerivedParameterValueType > DerivedParameterMapType
Definition: mitkModelBase.h:75
MitkPharmacokineticsExports.h
mitk::ExtendedToftsModel::POSITION_PARAMETER_Ktrans
static const unsigned int POSITION_PARAMETER_Ktrans
Definition: mitkExtendedToftsModel.h:54
mitk
DataCollection - Class to facilitate loading/accessing structured data.
Definition: RenderingTests.dox:1
mitk::ExtendedToftsModel::ConstPointer
itk::SmartPointer< const Self > ConstPointer
Definition: mitkExtendedToftsModel.h:35
mitk::ExtendedToftsModel::NUMBER_OF_PARAMETERS
static const unsigned int NUMBER_OF_PARAMETERS
Definition: mitkExtendedToftsModel.h:58
mitk::ExtendedToftsModel::Superclass
AIFBasedModelBase Superclass
Definition: mitkExtendedToftsModel.h:33
mitk::ModelBase::ParametersSizeType
ModelTraitsInterface::ParametersSizeType ParametersSizeType
Definition: mitkModelBase.h:65
mitk::ExtendedToftsModel::UNIT_PARAMETER_vp
static const std::string UNIT_PARAMETER_vp
Definition: mitkExtendedToftsModel.h:52
mitk::ModelBase
Base class for (dynamic) models. A model can be used to calculate its signal given the discrete time ...
Definition: mitkModelBase.h:47
mitk::ExtendedToftsModel::Self
ExtendedToftsModel Self
Definition: mitkExtendedToftsModel.h:32
mitk::AIFBasedModelBase
Base Class for all physiological perfusion models using an Aterial Input Function All AIF based model...
Definition: mitkAIFBasedModelBase.h:31
mitk::ExtendedToftsModel::UNIT_PARAMETER_Ktrans
static const std::string UNIT_PARAMETER_Ktrans
Definition: mitkExtendedToftsModel.h:50