diff --git a/Modules/Pharmacokinetics/src/Models/mitkTwoStepLinearModel.cpp b/Modules/Pharmacokinetics/src/Models/mitkTwoStepLinearModel.cpp index 6846ce111c..6a5b96262b 100644 --- a/Modules/Pharmacokinetics/src/Models/mitkTwoStepLinearModel.cpp +++ b/Modules/Pharmacokinetics/src/Models/mitkTwoStepLinearModel.cpp @@ -1,184 +1,184 @@ /*============================================================================ The Medical Imaging Interaction Toolkit (MITK) Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. Use of this source code is governed by a 3-clause BSD license that can be found in the LICENSE file. ============================================================================*/ #include "mitkTwoStepLinearModel.h" +#include const std::string mitk::TwoStepLinearModel::MODELL_NAME = "Two Step Linear Model"; const std::string mitk::TwoStepLinearModel::NAME_PARAMETER_y1 = "BaseValue"; const std::string mitk::TwoStepLinearModel::NAME_PARAMETER_a1 = "Slope_1"; const std::string mitk::TwoStepLinearModel::NAME_PARAMETER_t = "Change_Point"; const std::string mitk::TwoStepLinearModel::NAME_PARAMETER_a2 = "Slope_2"; const unsigned int mitk::TwoStepLinearModel::POSITION_PARAMETER_y1 = 0; const unsigned int mitk::TwoStepLinearModel::POSITION_PARAMETER_t = 1; const unsigned int mitk::TwoStepLinearModel::POSITION_PARAMETER_a1 = 2; const unsigned int mitk::TwoStepLinearModel::POSITION_PARAMETER_a2 = 3; const unsigned int mitk::TwoStepLinearModel::NUMBER_OF_PARAMETERS = 4; std::string mitk::TwoStepLinearModel::GetModelDisplayName() const { return MODELL_NAME; }; std::string mitk::TwoStepLinearModel::GetModelType() const { return "Generic"; }; mitk::TwoStepLinearModel::FunctionStringType mitk::TwoStepLinearModel::GetFunctionString() const { return "Slope_1*t+Y_intercept_1 if tSetTimeGrid(this->m_TimeGrid); return newClone.GetPointer(); };