Medical Imaging Interaction Toolkit  2023.12.99-ed252ae7
Medical Imaging Interaction Toolkit
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 NAME_PARAMETER_Ktrans;
45  static const std::string NAME_PARAMETER_ve;
46  static const std::string NAME_PARAMETER_vp;
47 
48  static const std::string UNIT_PARAMETER_Ktrans;
49  static const std::string UNIT_PARAMETER_ve;
50  static const std::string UNIT_PARAMETER_vp;
51 
52  static const unsigned int POSITION_PARAMETER_Ktrans;
53  static const unsigned int POSITION_PARAMETER_ve;
54  static const unsigned int POSITION_PARAMETER_vp;
55 
56  static const unsigned int NUMBER_OF_PARAMETERS;
57 
58  static const std::string NAME_DERIVED_PARAMETER_kep;
59 
60  static const unsigned int NUMBER_OF_DERIVED_PARAMETERS;
61 
62  static const std::string UNIT_DERIVED_PARAMETER_kep;
63 
64  static const std::string MODEL_DISPLAY_NAME;
65 
66  static const std::string MODEL_TYPE;
67 
68 
69  std::string GetModelDisplayName() const override;
70 
71  std::string GetModelType() const override;
72 
73  ParameterNamesType GetParameterNames() const override;
74  ParametersSizeType GetNumberOfParameters() const override;
75 
76  ParamterUnitMapType GetParameterUnits() const override;
77 
78  ParameterNamesType GetDerivedParameterNames() const override;
79 
80  ParametersSizeType GetNumberOfDerivedParameters() const override;
81  ParamterUnitMapType GetDerivedParameterUnits() const override;
82 
83 
84  protected:
86  ~ExtendedToftsModel() override;
87 
92  itk::LightObject::Pointer InternalClone() const override;
93 
94  ModelResultType ComputeModelfunction(const ParametersType& parameters) const override;
95 
96  DerivedParameterMapType ComputeDerivedParameters(const mitk::ModelBase::ParametersType&
97  parameters) const override;
98 
99 
100  void PrintSelf(std::ostream& os, ::itk::Indent indent) const override;
101 
102  private:
103 
104 
105  //No copy constructor allowed
106  ExtendedToftsModel(const Self& source);
107  void operator=(const Self&); //purposely not implemented
108 
109 
110 
111 
112  };
113 }
114 
115 #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:54
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:49
mitk::ExtendedToftsModel::MODEL_TYPE
static const std::string MODEL_TYPE
Definition: mitkExtendedToftsModel.h:66
mitk::ExtendedToftsModel::NAME_PARAMETER_Ktrans
static const std::string NAME_PARAMETER_Ktrans
Definition: mitkExtendedToftsModel.h:42
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:64
mitk::ExtendedToftsModel::NAME_PARAMETER_vp
static const std::string NAME_PARAMETER_vp
Definition: mitkExtendedToftsModel.h:46
mitk::ExtendedToftsModel::NAME_PARAMETER_ve
static const std::string NAME_PARAMETER_ve
Definition: mitkExtendedToftsModel.h:45
mitk::ExtendedToftsModel::UNIT_DERIVED_PARAMETER_kep
static const std::string UNIT_DERIVED_PARAMETER_kep
Definition: mitkExtendedToftsModel.h:62
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:53
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:52
mitk
Find image slices visible on a given plane.
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:56
mitk::ExtendedToftsModel::NUMBER_OF_DERIVED_PARAMETERS
static const unsigned int NUMBER_OF_DERIVED_PARAMETERS
Definition: mitkExtendedToftsModel.h:60
mitk::ExtendedToftsModel::Superclass
AIFBasedModelBase Superclass
Definition: mitkExtendedToftsModel.h:33
mitk::ModelBase::ParametersSizeType
ModelTraitsInterface::ParametersSizeType ParametersSizeType
Definition: mitkModelBase.h:65
mitk::ExtendedToftsModel::NAME_DERIVED_PARAMETER_kep
static const std::string NAME_DERIVED_PARAMETER_kep
Definition: mitkExtendedToftsModel.h:58
mitk::ExtendedToftsModel::UNIT_PARAMETER_vp
static const std::string UNIT_PARAMETER_vp
Definition: mitkExtendedToftsModel.h:50
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:48