diff --git a/Modules/ModelFit/src/Models/mitkExponentialSaturationModel.cpp b/Modules/ModelFit/src/Models/mitkExponentialSaturationModel.cpp index 00e5ec5009..971cdea18c 100644 --- a/Modules/ModelFit/src/Models/mitkExponentialSaturationModel.cpp +++ b/Modules/ModelFit/src/Models/mitkExponentialSaturationModel.cpp @@ -1,217 +1,217 @@ /*============================================================================ 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 "mitkExponentialSaturationModel.h" #include "mitkNumericConstants.h" -const std::string mitk::ExponentialSaturationModel::NAME_PARAMETER_BAT = "BAT"; -const std::string mitk::ExponentialSaturationModel::NAME_PARAMETER_y_bl = "y_bl"; -const std::string mitk::ExponentialSaturationModel::NAME_PARAMETER_y_fin = "y_fin"; -const std::string mitk::ExponentialSaturationModel::NAME_PARAMETER_k = "k"; +const std::string mitk::ExponentialSaturationModel::NAME_PARAMETER_BAT = "onset"; +const std::string mitk::ExponentialSaturationModel::NAME_PARAMETER_y_bl = "baseline"; +const std::string mitk::ExponentialSaturationModel::NAME_PARAMETER_y_fin = "y_final"; +const std::string mitk::ExponentialSaturationModel::NAME_PARAMETER_k = "rate"; const unsigned int mitk::ExponentialSaturationModel::NUMBER_OF_PARAMETERS = 4; -const std::string mitk::ExponentialSaturationModel::UNIT_PARAMETER_BAT = "[x]"; -const std::string mitk::ExponentialSaturationModel::UNIT_PARAMETER_y_bl = "[y]"; -const std::string mitk::ExponentialSaturationModel::UNIT_PARAMETER_y_fin = "[y]"; -const std::string mitk::ExponentialSaturationModel::UNIT_PARAMETER_k = "1/[x]"; +const std::string mitk::ExponentialSaturationModel::UNIT_PARAMETER_BAT = "[unit of x]"; +const std::string mitk::ExponentialSaturationModel::UNIT_PARAMETER_y_bl = "[unit of y]"; +const std::string mitk::ExponentialSaturationModel::UNIT_PARAMETER_y_fin = "[unit of y]"; +const std::string mitk::ExponentialSaturationModel::UNIT_PARAMETER_k = "1/[unit of x]"; const unsigned int mitk::ExponentialSaturationModel::POSITION_PARAMETER_BAT = 0; const unsigned int mitk::ExponentialSaturationModel::POSITION_PARAMETER_y_bl = 1; const unsigned int mitk::ExponentialSaturationModel::POSITION_PARAMETER_y_fin = 2; const unsigned int mitk::ExponentialSaturationModel::POSITION_PARAMETER_k = 3; const unsigned int mitk::ExponentialSaturationModel::NUMBER_OF_DERIVED_PARAMETERS = 0; const unsigned int mitk::ExponentialSaturationModel::NUMBER_OF_STATIC_PARAMETERS = 0; const std::string mitk::ExponentialSaturationModel::MODEL_DISPLAY_NAME = "Exponential Saturation Model"; const std::string mitk::ExponentialSaturationModel::MODEL_TYPE = "Generic"; -const std::string mitk::ExponentialSaturationModel::FUNCTION_STRING = "if xSetTimeGrid(this->m_TimeGrid); return newClone.GetPointer(); };