Medical Imaging Interaction Toolkit  2023.12.99-1652ac8d
Medical Imaging Interaction Toolkit
mitkTwoTissueCompartmentFDGModel.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 mitkTwoTissueCompartmentFDGModel_h
14 #define mitkTwoTissueCompartmentFDGModel_h
15 
16 #include "mitkAIFBasedModelBase.h"
18 
19 
20 namespace mitk
21 {
23  {
24 
25  public:
30 
32  itkFactorylessNewMacro(Self);
33  itkCloneMacro(Self);
34 
37 
39  static const std::string MODEL_DISPLAY_NAME;
40 
41  static const std::string NAME_PARAMETER_K1;
42  static const std::string NAME_PARAMETER_k2;
43  static const std::string NAME_PARAMETER_k3;
44  static const std::string NAME_PARAMETER_vb;
45 
46  static const std::string UNIT_PARAMETER_K1;
47  static const std::string UNIT_PARAMETER_k2;
48  static const std::string UNIT_PARAMETER_k3;
49  static const std::string UNIT_PARAMETER_vb;
50 
51  static const unsigned int POSITION_PARAMETER_K1;
52  static const unsigned int POSITION_PARAMETER_k2;
53  static const unsigned int POSITION_PARAMETER_k3;
54  static const unsigned int POSITION_PARAMETER_vb;
55 
56  static const unsigned int NUMBER_OF_PARAMETERS;
57 
58  static const std::string MODEL_TYPE;
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 
70  protected:
72  ~TwoTissueCompartmentFDGModel() override;
73 
78  itk::LightObject::Pointer InternalClone() const override;
79 
80  ModelResultType ComputeModelfunction(const ParametersType& parameters) const override;
81 
82  void PrintSelf(std::ostream& os, ::itk::Indent indent) const override;
83 
84  private:
85 
86 
87  //No copy constructor allowed
88  TwoTissueCompartmentFDGModel(const Self& source);
89  void operator=(const Self&); //purposely not implemented
90 
91  };
92 }
93 
94 #endif
mitk::ModelTraitsInterface::ParamterUnitMapType
std::map< ParameterNameType, std::string > ParamterUnitMapType
Definition: mitkModelTraitsInterface.h:40
MITKPHARMACOKINETICS_EXPORT
#define MITKPHARMACOKINETICS_EXPORT
Definition: MitkPharmacokineticsExports.h:15
mitk::TwoTissueCompartmentFDGModel::UNIT_PARAMETER_K1
static const std::string UNIT_PARAMETER_K1
Definition: mitkTwoTissueCompartmentFDGModel.h:46
mitk::ModelBase::ParameterNamesType
ModelTraitsInterface::ParameterNamesType ParameterNamesType
Definition: mitkModelBase.h:64
mitk::ModelBase::ModelResultType
ModelTraitsInterface::ModelResultType ModelResultType
Definition: mitkModelBase.h:55
mitkAIFBasedModelBase.h
mitk::TwoTissueCompartmentFDGModel::POSITION_PARAMETER_vb
static const unsigned int POSITION_PARAMETER_vb
Definition: mitkTwoTissueCompartmentFDGModel.h:54
mitk::TwoTissueCompartmentFDGModel::ConstPointer
itk::SmartPointer< const Self > ConstPointer
Definition: mitkTwoTissueCompartmentFDGModel.h:29
mitk::ModelBase::ParametersType
ModelTraitsInterface::ParametersType ParametersType
Definition: mitkModelBase.h:59
mitk::TwoTissueCompartmentFDGModel::NAME_PARAMETER_vb
static const std::string NAME_PARAMETER_vb
Definition: mitkTwoTissueCompartmentFDGModel.h:44
mitk::TwoTissueCompartmentFDGModel::UNIT_PARAMETER_k3
static const std::string UNIT_PARAMETER_k3
Definition: mitkTwoTissueCompartmentFDGModel.h:48
itk::SmartPointer< Self >
mitk::TwoTissueCompartmentFDGModel::Superclass
AIFBasedModelBase Superclass
Definition: mitkTwoTissueCompartmentFDGModel.h:27
MitkPharmacokineticsExports.h
mitk
Find image slices visible on a given plane.
Definition: RenderingTests.dox:1
mitk::TwoTissueCompartmentFDGModel::POSITION_PARAMETER_k2
static const unsigned int POSITION_PARAMETER_k2
Definition: mitkTwoTissueCompartmentFDGModel.h:52
mitk::TwoTissueCompartmentFDGModel::NUMBER_OF_PARAMETERS
static const unsigned int NUMBER_OF_PARAMETERS
Definition: mitkTwoTissueCompartmentFDGModel.h:56
mitk::TwoTissueCompartmentFDGModel::MODEL_TYPE
static const std::string MODEL_TYPE
Definition: mitkTwoTissueCompartmentFDGModel.h:58
mitk::TwoTissueCompartmentFDGModel::POSITION_PARAMETER_k3
static const unsigned int POSITION_PARAMETER_k3
Definition: mitkTwoTissueCompartmentFDGModel.h:53
mitk::TwoTissueCompartmentFDGModel::UNIT_PARAMETER_k2
static const std::string UNIT_PARAMETER_k2
Definition: mitkTwoTissueCompartmentFDGModel.h:47
mitk::TwoTissueCompartmentFDGModel::Self
TwoTissueCompartmentFDGModel Self
Definition: mitkTwoTissueCompartmentFDGModel.h:26
mitk::TwoTissueCompartmentFDGModel::NAME_PARAMETER_k2
static const std::string NAME_PARAMETER_k2
Definition: mitkTwoTissueCompartmentFDGModel.h:42
mitk::TwoTissueCompartmentFDGModel::MODEL_DISPLAY_NAME
static const std::string MODEL_DISPLAY_NAME
Definition: mitkTwoTissueCompartmentFDGModel.h:36
mitk::TwoTissueCompartmentFDGModel::Pointer
itk::SmartPointer< Self > Pointer
Definition: mitkTwoTissueCompartmentFDGModel.h:28
mitk::TwoTissueCompartmentFDGModel::POSITION_PARAMETER_K1
static const unsigned int POSITION_PARAMETER_K1
Definition: mitkTwoTissueCompartmentFDGModel.h:51
mitk::ModelBase::ParametersSizeType
ModelTraitsInterface::ParametersSizeType ParametersSizeType
Definition: mitkModelBase.h:65
mitk::TwoTissueCompartmentFDGModel::UNIT_PARAMETER_vb
static const std::string UNIT_PARAMETER_vb
Definition: mitkTwoTissueCompartmentFDGModel.h:49
mitk::TwoTissueCompartmentFDGModel::NAME_PARAMETER_K1
static const std::string NAME_PARAMETER_K1
Definition: mitkTwoTissueCompartmentFDGModel.h:41
mitk::TwoTissueCompartmentFDGModel
Definition: mitkTwoTissueCompartmentFDGModel.h:22
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::TwoTissueCompartmentFDGModel::NAME_PARAMETER_k3
static const std::string NAME_PARAMETER_k3
Definition: mitkTwoTissueCompartmentFDGModel.h:43