Medical Imaging Interaction Toolkit  2018.4.99-389bf124
Medical Imaging Interaction Toolkit
mitkTwoCompartmentExchangeModel.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 MITKTWOCOMPARTMENTEXCHANGEMODEL_H
14 #define MITKTWOCOMPARTMENTEXCHANGEMODEL_H
15 
16 #include "mitkAIFBasedModelBase.h"
18 
19 
20 namespace mitk
21 {
41  {
42 
43  public:
48 
50  itkFactorylessNewMacro(Self);
51  itkCloneMacro(Self);
52 
55 
57  static const std::string MODEL_DISPLAY_NAME;
58 
59  static const std::string NAME_PARAMETER_F;
60  static const std::string NAME_PARAMETER_PS;
61  static const std::string NAME_PARAMETER_ve;
62  static const std::string NAME_PARAMETER_vp;
63 
64  static const unsigned int POSITION_PARAMETER_F;
65  static const unsigned int POSITION_PARAMETER_PS;
66  static const unsigned int POSITION_PARAMETER_ve;
67  static const unsigned int POSITION_PARAMETER_vp;
68 
69  static const std::string UNIT_PARAMETER_F;
70  static const std::string UNIT_PARAMETER_PS;
71  static const std::string UNIT_PARAMETER_ve;
72  static const std::string UNIT_PARAMETER_vp;
73 
74  static const unsigned int NUMBER_OF_PARAMETERS;
75 
76  std::string GetModelDisplayName() const override;
77 
78  std::string GetModelType() const override;
79 
80  ParameterNamesType GetParameterNames() const override;
81  ParametersSizeType GetNumberOfParameters() const override;
82 
83  ParamterUnitMapType GetParameterUnits() const override;
84 
85 
86  protected:
88  ~TwoCompartmentExchangeModel() override;
89 
94  itk::LightObject::Pointer InternalClone() const override;
95 
96  ModelResultType ComputeModelfunction(const ParametersType& parameters) const override;
97 
98  void PrintSelf(std::ostream& os, ::itk::Indent indent) const override;
99 
100  private:
101 
102 
103  //No copy constructor allowed
104  TwoCompartmentExchangeModel(const Self& source);
105  void operator=(const Self&); //purposely not implemented
106 
107 
108 
109 
110  };
111 }
112 
113 #endif // MITKTWOCOMPARTMENTEXCHANGEMODEL_H
Base class for (dynamic) models. A model can be used to calculate its signal given the discrete time ...
Definition: mitkModelBase.h:47
ModelTraitsInterface::ParametersType ParametersType
Definition: mitkModelBase.h:59
#define MITKPHARMACOKINETICS_EXPORT
DataCollection - Class to facilitate loading/accessing structured data.
itk::SmartPointer< const Self > ConstPointer
ModelTraitsInterface::ParametersSizeType ParametersSizeType
Definition: mitkModelBase.h:65
ModelTraitsInterface::ModelResultType ModelResultType
Definition: mitkModelBase.h:55
Implementation of the analystical model function of the Physiological Pharmacokinetic Brix model...
ModelTraitsInterface::ParameterNamesType ParameterNamesType
Definition: mitkModelBase.h:64
Base Class for all physiological perfusion models using an Aterial Input Function All AIF based model...
std::map< ParameterNameType, std::string > ParamterUnitMapType