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
mitkExtendedOneTissueCompartmentModel.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 mitkExtendedOneTissueCompartmentModel_h
14 #define mitkExtendedOneTissueCompartmentModel_h
15 
16 #include "mitkAIFBasedModelBase.h"
18 
19 namespace mitk
20 {
29  {
30 
31  public:
36 
38  itkFactorylessNewMacro(Self);
39  itkCloneMacro(Self);
40 
43 
44  static const std::string MODEL_DISPLAY_NAME;
45 
46  static const std::string NAME_PARAMETER_k1;
47  static const std::string NAME_PARAMETER_k2;
48  static const std::string NAME_PARAMETER_VB;
49 
50  static const std::string UNIT_PARAMETER_k1;
51  static const std::string UNIT_PARAMETER_k2;
52  static const std::string UNIT_PARAMETER_VB;
53 
54  static const unsigned int POSITION_PARAMETER_k1;
55  static const unsigned int POSITION_PARAMETER_k2;
56  static const unsigned int POSITION_PARAMETER_VB;
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  protected:
72 
77  itk::LightObject::Pointer InternalClone() const override;
78 
79  ModelResultType ComputeModelfunction(const ParametersType& parameters) const override;
80 
81  void PrintSelf(std::ostream& os, ::itk::Indent indent) const override;
82 
83  private:
84 
85 
86  //No copy constructor allowed
88  void operator=(const Self&); //purposely not implemented
89 
90 
91 
92 
93  };
94 }
95 
96 #endif
mitk::ModelTraitsInterface::ParamterUnitMapType
std::map< ParameterNameType, std::string > ParamterUnitMapType
Definition: mitkModelTraitsInterface.h:40
MITKPHARMACOKINETICS_EXPORT
#define MITKPHARMACOKINETICS_EXPORT
Definition: MitkPharmacokineticsExports.h:15
mitk::ExtendedOneTissueCompartmentModel::POSITION_PARAMETER_k1
static const unsigned int POSITION_PARAMETER_k1
Definition: mitkExtendedOneTissueCompartmentModel.h:54
mitk::ExtendedOneTissueCompartmentModel::UNIT_PARAMETER_k2
static const std::string UNIT_PARAMETER_k2
Definition: mitkExtendedOneTissueCompartmentModel.h:51
mitk::ModelBase::ParameterNamesType
ModelTraitsInterface::ParameterNamesType ParameterNamesType
Definition: mitkModelBase.h:64
mitk::ModelBase::ModelResultType
ModelTraitsInterface::ModelResultType ModelResultType
Definition: mitkModelBase.h:55
mitkAIFBasedModelBase.h
mitk::ExtendedOneTissueCompartmentModel::NAME_PARAMETER_k1
static const std::string NAME_PARAMETER_k1
Definition: mitkExtendedOneTissueCompartmentModel.h:46
mitk::ExtendedOneTissueCompartmentModel::ConstPointer
itk::SmartPointer< const Self > ConstPointer
Definition: mitkExtendedOneTissueCompartmentModel.h:35
mitk::ModelBase::ParametersType
ModelTraitsInterface::ParametersType ParametersType
Definition: mitkModelBase.h:59
itk::SmartPointer< Self >
mitk::ExtendedOneTissueCompartmentModel::Self
ExtendedOneTissueCompartmentModel Self
Definition: mitkExtendedOneTissueCompartmentModel.h:32
mitk::ExtendedOneTissueCompartmentModel::POSITION_PARAMETER_k2
static const unsigned int POSITION_PARAMETER_k2
Definition: mitkExtendedOneTissueCompartmentModel.h:55
MitkPharmacokineticsExports.h
mitk
DataCollection - Class to facilitate loading/accessing structured data.
Definition: RenderingTests.dox:1
mitk::ExtendedOneTissueCompartmentModel::Pointer
itk::SmartPointer< Self > Pointer
Definition: mitkExtendedOneTissueCompartmentModel.h:34
mitk::ExtendedOneTissueCompartmentModel::Superclass
AIFBasedModelBase Superclass
Definition: mitkExtendedOneTissueCompartmentModel.h:33
mitk::ExtendedOneTissueCompartmentModel::UNIT_PARAMETER_VB
static const std::string UNIT_PARAMETER_VB
Definition: mitkExtendedOneTissueCompartmentModel.h:52
mitk::ExtendedOneTissueCompartmentModel::NAME_PARAMETER_VB
static const std::string NAME_PARAMETER_VB
Definition: mitkExtendedOneTissueCompartmentModel.h:48
mitk::ModelBase::ParametersSizeType
ModelTraitsInterface::ParametersSizeType ParametersSizeType
Definition: mitkModelBase.h:65
mitk::ExtendedOneTissueCompartmentModel
Definition: mitkExtendedOneTissueCompartmentModel.h:28
mitk::ExtendedOneTissueCompartmentModel::POSITION_PARAMETER_VB
static const unsigned int POSITION_PARAMETER_VB
Definition: mitkExtendedOneTissueCompartmentModel.h:56
mitk::ExtendedOneTissueCompartmentModel::NAME_PARAMETER_k2
static const std::string NAME_PARAMETER_k2
Definition: mitkExtendedOneTissueCompartmentModel.h:47
mitk::ExtendedOneTissueCompartmentModel::MODEL_DISPLAY_NAME
static const std::string MODEL_DISPLAY_NAME
Definition: mitkExtendedOneTissueCompartmentModel.h:42
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::AIFBasedModelBase
Base Class for all physiological perfusion models using an Aterial Input Function All AIF based model...
Definition: mitkAIFBasedModelBase.h:31
mitk::ExtendedOneTissueCompartmentModel::NUMBER_OF_PARAMETERS
static const unsigned int NUMBER_OF_PARAMETERS
Definition: mitkExtendedOneTissueCompartmentModel.h:58
mitk::ExtendedOneTissueCompartmentModel::UNIT_PARAMETER_k1
static const std::string UNIT_PARAMETER_k1
Definition: mitkExtendedOneTissueCompartmentModel.h:50