/** * ParamTable.cc * * Created on: 10 oct. 2014 * Author: AKKA */ #include "ParamTable.hh" #include "Parameter.hh" #include "ParamData.hh" #include "ParamInfo.hh" #include "ParamMgr.hh" #include "Process.hh" #include "ServicesServer.hh" #include #include using namespace log4cxx; namespace AMDA { namespace Info { #define PUSHINFO(infoMap, key, value) if(!value.empty())infoMap.push_back(std::pair(key,value)) LoggerPtr ParamTable::_logger(Logger::getLogger("AMDA-Kernel.ParamTable")); ParamTable::ParamTable(const char *paramId, int dim) : _paramId(paramId), _dim(dim), _tableName(""), _tableUnits(""), _variable("false") { } ParamTable::~ParamTable() { } std::string ParamTable::getTableParamKeyForInfo(ParameterManager* /*parameterManager*/) { return ""; } /* * @brief Get param id */ std::string ParamTable::getParamId(void) { return _paramId; } int ParamTable::getDim(void) { return _dim; } /* * @brief Set name of the table */ void ParamTable::setName(std::string name) { _tableName = name; } /* * @brief Get name of the table */ std::string ParamTable::getName(ParameterManager* parameterManager) { if (_tableName.empty() && _variable) { std::string paramKeyForInfo = getTableParamKeyForInfo(parameterManager); if (!paramKeyForInfo.empty()) { std::string tableParam = getTableParamByKey(parameterManager, paramKeyForInfo); AMDA::Info::ParamInfoSPtr paramTableInfo = AMDA::Info::ParamMgr::getInstance()->getParamInfoFromId(tableParam); if (paramTableInfo != nullptr) return paramTableInfo->getName(); } } return _tableName; } /* * @brief Set units */ void ParamTable::setUnits(std::string units) { _tableUnits = units; } /* * @brief Get units of the table */ std::string ParamTable::getUnits(ParameterManager* parameterManager) { if (_tableName.empty() && _variable) { std::string paramKeyForInfo = getTableParamKeyForInfo(parameterManager); if (!paramKeyForInfo.empty()) { std::string tableParam = getTableParamByKey(parameterManager, paramKeyForInfo); AMDA::Info::ParamInfoSPtr paramTableInfo = AMDA::Info::ParamMgr::getInstance()->getParamInfoFromId(tableParam); if (paramTableInfo != nullptr) return paramTableInfo->getUnits(); } } return _tableUnits; } /* * @brief Set isVariable attribute */ void ParamTable::setIsVariable(bool isVariable) { _variable = isVariable; } /* * @brief Get if it's a variable table */ bool ParamTable::isVariable(ParameterManager* /*parameterManager*/) { return _variable; } /* * @brief Set isVariable attribute */ void ParamTable::setIsFullVariable(bool isFullVariable) { _fullVariable = isFullVariable; } /* * @brief Get if it's a variable table */ bool ParamTable::isFullVariable(ParameterManager* /*parameterManager*/) { return _fullVariable; } void ParamTable::addRelatedParams(ParameterManager *parameterManager, std::string paramId, std::listrelatedParams){ AMDA::Info::ParamInfoSPtr paramInfo = AMDA::Info::ParamMgr::getInstance()->getParamInfoFromId(paramId); if(paramInfo == NULL) return; const std::vector& paramLinkedParams = paramInfo->getLinkedParamList(); if(paramLinkedParams.empty()) return; for (auto pId : paramLinkedParams){ relatedParams.push_back(pId); addRelatedParams(parameterManager, paramId, relatedParams); } return; } void ParamTable::addTableParam(std::string key, std::string name) { _tableParams[key] = name; } std::string ParamTable::getTableParamByKey(ParameterManager* /*parameterManager*/, std::string key) { return _tableParams[key]; } std::map& ParamTable::getTableParams(ParameterManager* /*parameterManager*/) { return _tableParams; } std::vector ParamTable::getConstantTableParamValuesByKey(ParameterManager *parameterManager, std::string key) { std::vector paramValues; ParameterSPtr tmpParam = parameterManager->getParameter(_paramId); if (tmpParam == nullptr) return paramValues; AMDA::Parameters::Parameter::InfoList lInfoList = tmpParam->getInfoList(); if (_tableParams.find(key) == _tableParams.end()) return paramValues; std::string tableParamName = _tableParams[key]; if (lInfoList.find(tableParamName) == lInfoList.end()) return paramValues; paramValues = *lInfoList[tableParamName].get(); return paramValues; } std::vector ParamTable::getVariableTableParamValuesByKey(ParameterManager* /*parameterManager*/, std::map>*paramsTableData, std::string key) { std::vector paramValues; if (paramsTableData == NULL) return paramValues; if (paramsTableData->find(key) == paramsTableData->end()) return paramValues; return (*paramsTableData)[key]; } std::vector ParamTable::getTableParamValuesByKey(ParameterManager *parameterManager, std::map>*paramsTableData, std::string key) { if (_variable) return getVariableTableParamValuesByKey(parameterManager, paramsTableData, key); else return getConstantTableParamValuesByKey(parameterManager, key); } void ParamTable::addTableInfo(ParameterManager *parameterManager, int dim, std::vector>&infoMap) { std::stringstream tableDim; tableDim << dim; std::stringstream infoKey; infoKey.str(""); infoKey << PARAMETER_TABLE << "[" << tableDim.str() << "]"; PUSHINFO(infoMap, infoKey.str(), this->getName(parameterManager)); infoKey.str(""); infoKey << PARAMETER_TABLE_UNITS << "[" << tableDim.str() << "]"; if (this->getUnits(parameterManager) ==""){ PUSHINFO(infoMap, infoKey.str(), std::string(UNSPECIFIED_UNIT)); }else{ PUSHINFO(infoMap, infoKey.str(), this->getUnits(parameterManager)); } if (this->isVariable(parameterManager)) { this->addVariableTableInfo(parameterManager, dim, infoMap); } else { //build min and max values list std::stringstream tableMinValues; std::stringstream tableMaxValues; int size_ = this->getSize(parameterManager); for (int i = 0; i< size_; ++i) { if (i > 0) { tableMinValues << ","; tableMaxValues << ","; } AMDA::Info::t_TableBound bound = this->getBound(parameterManager, i); tableMinValues << bound.min; tableMaxValues << bound.max; } infoKey.str(""); infoKey << PARAMETER_TABLE_MINVAL << "[" << tableDim.str() << "]"; PUSHINFO(infoMap, infoKey.str(), tableMinValues.str()); infoKey.str(""); infoKey << PARAMETER_TABLE_MAXVAL << "[" << tableDim.str() << "]"; PUSHINFO(infoMap, infoKey.str(), tableMaxValues.str()); } } void ParamTable::addSemiVariableTableInfo(ParameterManager* parameterManager, int dim, std::string paramId, std::string tabKey, std::vector>&infoMap) { AMDA::Parameters::ParameterSPtr pParam = parameterManager->getParameter(paramId); Process* lProcess = dynamic_cast (pParam->getDataWriterTemplate().get()); if (lProcess != NULL) { AMDA::Parameters::SemiVariableTable semiVariableTable = lProcess ->getSemiVariableTable(); std::list::iterator it; it = std::find(_printedTables.begin(), _printedTables.end(), paramId); if (!semiVariableTable.tabHeader.empty() && it == _printedTables.end()) { std::stringstream head; head.str(""); head << "mode" << " "; for (auto h : semiVariableTable.tabHeader) { head << h << " "; } PUSHINFO(infoMap, "", head.str()); // recuperer les centres bool variableSizes = false; //unsigned int nModes = semiVariableTable.tabValues.size(); unsigned int index =0; unsigned nValues = 0; for (auto tabValues : semiVariableTable.tabValues) { if (index == 0) nValues = tabValues.second.size(); if (tabValues.second.size() != nValues) variableSizes = true; ++index; } if (variableSizes || !semiVariableTable.calculateBounds) { std::ostringstream values; for (auto tabValues : semiVariableTable.tabValues) { values << tabValues.first << " "; for (unsigned int i = 0; i < nValues; i++) { if (i < tabValues.second.size()) { values << std::to_string(tabValues.second[i]) << " "; } else { values << "NAN "; } } PUSHINFO(infoMap, "", values.str()); values.str(""); } } else { std::vector energyVec; std::map> paramsTableData; std::map> semiVariableTableData; int nMode=0; for (auto tabValues : semiVariableTable.tabValues) { paramsTableData[tabKey] = tabValues.second; for (unsigned int j = 0; j < nValues; ++j) { t_TableBound bound = getBound(parameterManager, j , ¶msTableData); if(bound.min != j/2 && bound.max !=j/2+1){ semiVariableTableData[nMode].push_back(bound.min); semiVariableTableData[nMode + 1].push_back(bound.max); } } nMode +=2; } int l = 0; int k = 0; for (auto v : semiVariableTableData) { std::ostringstream values; std::string born; (l % 2 == 0) ? born = " Min " : born = " Max "; values << std::to_string(k) << born; // Convert all doubles to string "," std::copy(v.second.begin(), v.second.end(), std::ostream_iterator(values, " ")); PUSHINFO(infoMap, "", values.str()); values.str(""); if (l % 2 != 0) k++; l++; } } _printedTables.push_back(paramId); } } AMDA::Info::ParamInfoSPtr paramInfo = AMDA::Info::ParamMgr::getInstance()->getParamInfoFromId(paramId); const std::vector& paramLinkedParams = paramInfo->getLinkedParamList(); for (auto pId : paramLinkedParams) addSemiVariableTableInfo(parameterManager, dim, pId, tabKey, infoMap); return; } void ParamTable::addVariableTableInfo(ParameterManager * parameterManager, int dim, std::vector>&tableInfo) { std::map& tableParams = this->getTableParams(parameterManager); if (!tableParams.empty()) { std::stringstream infoKey; int i = 0; for (auto tableParam : tableParams) { infoKey.str(""); infoKey << VARIABLE_PARAMETER_TABLE << tableParam.first << "[" << i << "]"; PUSHINFO(tableInfo, infoKey.str(), tableParam.second); AMDA::Parameters::ParameterSPtr variableTableParam = parameterManager->getParameter(tableParam.second); addSemiVariableTableInfo(parameterManager, dim, tableParam.second, tableParam.first, tableInfo); i++; } } } ParameterSPtr ParamTable::createRelatedParameter(ParameterManager *parameterManager) { ParameterSPtr lParameter; //Compute a ResmapledParameter name std::stringstream lIdent; lIdent << _paramId << "_" << _tableName; LOG4CXX_DEBUG(_logger, "Create Parameter from ParamTable: " << lIdent.str()); // Search if already exist lParameter = parameterManager->findParamInParameterList(lIdent.str()); if (lParameter != nullptr) { LOG4CXX_DEBUG(_logger, "Table Parameter: " << lIdent.str() << " founded"); lParameter = parameterManager->checkIfIsANeededParameter(lParameter); } else { // create Parameter from ParamTable LOG4CXX_DEBUG(_logger, "ParamTable::createRelatedParameter: " << lIdent.str() << " creation"); lParameter = ParameterSPtr(new Parameter(*parameterManager, lIdent.str())); Process* lProcess = NULL; lProcess = ServicesServer::getInstance()->getProcess("tableparamtoparameter", *lParameter.get()); if (lProcess) { std::stringstream expression; expression << _paramId << "|" << _dim; lProcess->setExpression(expression.str()); lProcess->setIsUserProcess(false); DataWriterSPtr lDataWriter(lProcess); lParameter->setDataWriter(lDataWriter); } else { BOOST_THROW_EXCEPTION(ParameterManager_exception() << AMDA::errno_code(AMDA_PROCESS_ERR) << AMDA::ex_msg(std::string("Cannot found tableparamtoparameter process"))); } parameterManager->addParamInParameterList(lParameter); } return lParameter; } std::string ParamBoundsTable::_boundsParamKey = "TABLEPARAM_BOUNDS"; ParamBoundsTable::ParamBoundsTable(const char *paramId, int dim) : ParamTable(paramId, dim) { } std::string ParamBoundsTable::getTableParamKeyForInfo(ParameterManager* /*parameterManager*/) { return ParamBoundsTable::_boundsParamKey; } /* * @brief Get size of the table */ int ParamBoundsTable::getSize(ParameterManager *parameterManager) { if (!_variable) { std::vector boundsValues = getConstantTableParamValuesByKey(parameterManager, ParamBoundsTable::_boundsParamKey); return boundsValues.size() - 1; } else { return 0; } } /* * @brief Get a bounds for a specified index */ t_TableBound ParamBoundsTable::getBound(ParameterManager *parameterManager, unsigned int index, std::map>*paramsTableData) { t_TableBound bound; bound.index = index; std::vector boundsValues = getTableParamValuesByKey(parameterManager, paramsTableData, ParamBoundsTable::_boundsParamKey); if (boundsValues.empty() || (index >= boundsValues.size() - 1)) { LOG4CXX_ERROR(_logger, "Index " << index << " outside of table definition => Cannot get real bound"); bound.min = index; bound.max = index + 1; return bound; } bound.min = std::min(boundsValues[index], boundsValues[index + 1]); bound.max = std::max(boundsValues[index], boundsValues[index + 1]); bound.center = (bound.min + bound.max) /2.; return bound; } std::string ParamCenterTable::_centersParamKey = "TABLEPARAM_CENTERS"; ParamCenterTable::ParamCenterTable(const char *paramId, int dim, double size) : ParamTable(paramId, dim), _size(size) { } std::string ParamCenterTable::getTableParamKeyForInfo(ParameterManager* /*parameterManager*/) { return ParamCenterTable::_centersParamKey; } /* * @brief Get size of the table */ int ParamCenterTable::getSize(ParameterManager *parameterManager) { if (!_variable) { std::vector centersValues = getConstantTableParamValuesByKey(parameterManager, ParamCenterTable::_centersParamKey); return centersValues.size(); } else { return 0; } } /* * @brief Get a bound for a specified index */ t_TableBound ParamCenterTable::getBound(ParameterManager *parameterManager, unsigned int index, std::map>*paramsTableData) { t_TableBound bound; bound.index = index; std::vector centersValues = getTableParamValuesByKey(parameterManager, paramsTableData, ParamCenterTable::_centersParamKey); if (index >= centersValues.size()) { LOG4CXX_ERROR(_logger, "Index " << index << " outside of table definition => Cannot get real bound"); bound.min = index; bound.max = index + 1; return bound; } if (!std::isnan(centersValues[index])) { bound.min = centersValues[index] - _size / 2.; bound.max = centersValues[index] + _size / 2.; } else { bound.min = NAN; bound.max = NAN; } bound.center = centersValues[index]; return bound; } std::string ParamCenterWidthTable::_centersParamKey = "TABLEPARAM_CENTERS"; std::string ParamCenterWidthTable::_widthsParamKey = "TABLEPARAM_WIDTHS"; ParamCenterWidthTable::ParamCenterWidthTable(const char *paramId, int dim) : ParamTable(paramId, dim) { } std::string ParamCenterWidthTable::getTableParamKeyForInfo(ParameterManager* /*parameterManager*/) { return ParamCenterWidthTable::_centersParamKey; } /* * @brief Get size of the table */ int ParamCenterWidthTable::getSize(ParameterManager *parameterManager) { if (!_variable) { std::vector centersValues = getConstantTableParamValuesByKey(parameterManager, ParamCenterWidthTable::_centersParamKey); return centersValues.size(); } else { return 0; } } /* * @brief Get a bound for a specified index */ t_TableBound ParamCenterWidthTable::getBound(ParameterManager *parameterManager, unsigned int index, std::map>*paramsTableData) { t_TableBound bound; bound.index = index; std::vector centersValues = getTableParamValuesByKey(parameterManager, paramsTableData, ParamCenterWidthTable::_centersParamKey); std::vector widthsValues = getTableParamValuesByKey(parameterManager, paramsTableData, ParamCenterWidthTable::_widthsParamKey); if ((index >= centersValues.size()) || (index >= widthsValues.size())) { LOG4CXX_ERROR(_logger, "Index " << index << " outside of table definition => Cannot get real bound"); bound.min = index; bound.max = index + 1; return bound; } if (!std::isnan(centersValues[index]) && !std::isnan(widthsValues[index])) { bound.min = centersValues[index] - widthsValues[index] / 2.; bound.max = centersValues[index] + widthsValues[index] / 2.; } else { bound.min = NAN; bound.max = NAN; } bound.center = centersValues[index]; return bound; } std::string EmbeddedCenterTable::_paramKey = "TABLEPARAM_CENTERS"; EmbeddedCenterTable::EmbeddedCenterTable(const char *paramId, int dim, std::vector & centersValue, bool logMode): ParamTable(paramId, dim), _centersValues(centersValue), _log(logMode){ } std::string EmbeddedCenterTable::getTableParamKeyForInfo(ParameterManager* /*parameterManager*/) { return EmbeddedCenterTable::_paramKey; } int EmbeddedCenterTable::getSize(ParameterManager* /*parameterManager*/) { return _centersValues.size(); } t_TableBound EmbeddedCenterTable::getBound(ParameterManager* /*parameterManager*/, unsigned int index, std::map>* /*paramsTableData*/) { t_TableBound bound; bound.index = index; if (index >= _centersValues.size()) { LOG4CXX_ERROR(_logger, "Index " << index << " outside of table definition => Cannot get real bound"); bound.min = index; bound.max = index + 1; return bound; } //Compute bounds if (_centersValues.size() <= 1) { LOG4CXX_ERROR(_logger, "Table dimension too small to compute bound"); bound.min = index; bound.max = index + 1; return bound; } if(index == 0 ){ bound.min = 1.0/((1.0/_centersValues[0]+ 1.0/_centersValues[1])/2); bound.max = 2.0*_centersValues[0]; }else if(index ==_centersValues.size() -1){ bound.max = 1.0/((1.0/_centersValues[index]+ 1.0/_centersValues[index-1])/2); bound.min = _centersValues[index]/2; }else{ bound.min = 1.0/((1.0/_centersValues[index]+ 1.0/_centersValues[index+1])/2); bound.max = 1.0/((1.0/_centersValues[index]+ 1.0/_centersValues[index-1])/2); } bound.center = _centersValues[index]; return bound; } /** * ParamCenterAutoTable */ std::string ParamCenterAutoTable::_centersParamKey = "TABLEPARAM_CENTERS"; ParamCenterAutoTable::ParamCenterAutoTable(const char *paramId, int dim, bool log) : ParamTable(paramId, dim), _log(log) { } std::string ParamCenterAutoTable::getTableParamKeyForInfo(ParameterManager* /*parameterManager*/) { return ParamCenterAutoTable::_centersParamKey; } /* * @brief Get size of the table */ int ParamCenterAutoTable::getSize(ParameterManager *parameterManager) { if (!_variable) { std::vector centersValues = getConstantTableParamValuesByKey(parameterManager, ParamCenterAutoTable::_centersParamKey); return centersValues.size(); } else { return 0; } } /* * @brief Get a bound for a specified index */ t_TableBound ParamCenterAutoTable::getBound(ParameterManager *parameterManager, unsigned int index, std::map>*paramsTableData) { t_TableBound bound; bound.index = index; std::vector centersValues = getTableParamValuesByKey(parameterManager, paramsTableData, ParamCenterAutoTable::_centersParamKey); if (index >= centersValues.size()) { LOG4CXX_ERROR(_logger, "Index " << index << " outside of table definition => Cannot get real bound"); bound.min = index; bound.max = index + 1; return bound; } //Compute bounds if (centersValues.size() <= 1) { LOG4CXX_ERROR(_logger, "Table dimension too small to compute bound"); bound.min = index; bound.max = index + 1; return bound; } std::vector workingValues; for (std::vector::iterator it = centersValues.begin(); it != centersValues.end(); ++it) { if (_log) { workingValues.push_back(log10(*it)); } else { workingValues.push_back(*it); } } double minus = 0.; double plus = 0.; if (index == 0) { if (!std::isnan(workingValues[1]) && !std::isnan(workingValues[0])) { plus = (workingValues[1] - workingValues[0]) / 2.; } else plus = NAN; minus = plus; } else if (index == workingValues.size() - 1) { if (!std::isnan(workingValues[workingValues.size() - 1]) && !std::isnan(workingValues[workingValues.size() - 2])) { minus = (workingValues[workingValues.size() - 1] - workingValues[workingValues.size() - 2]) / 2.; } else minus = NAN; plus = minus; } else { if (!std::isnan(workingValues[index]) && !std::isnan(workingValues[index - 1])) minus = (workingValues[index] - workingValues[index - 1]) / 2.; else minus = NAN; if (!std::isnan(workingValues[index + 1]) && !std::isnan(workingValues[index])) plus = (workingValues[index + 1] - workingValues[index]) / 2.; else plus = NAN; } if (!std::isnan(minus)) bound.min = workingValues[index] - minus; else bound.min = NAN; if (!std::isnan(plus)) bound.max = workingValues[index] + plus; else bound.max = NAN; if (bound.min > bound.max) { double temp = bound.max; bound.max = bound.min; bound.min = temp; } if (_log) { bound.min = pow(10,bound.min); bound.max = pow(10,bound.max); } bound.center = centersValues[index]; return bound; } std::string ParamMinMaxTable::_minParamKey = "TABLEPARAM_MIN"; std::string ParamMinMaxTable::_maxParamKey = "TABLEPARAM_MAX"; ParamMinMaxTable::ParamMinMaxTable(const char *paramId, int dim) : ParamTable(paramId, dim) { } /* * @brief Get size of the table */ int ParamMinMaxTable::getSize(ParameterManager *parameterManager) { if (!_variable) { std::vector minValues = getConstantTableParamValuesByKey(parameterManager, ParamMinMaxTable::_minParamKey); return minValues.size(); } else { return 0; } } /* * @brief Get bound for a specified index */ t_TableBound ParamMinMaxTable::getBound(ParameterManager *parameterManager, unsigned int index, std::map>*paramsTableData) { t_TableBound bound; bound.index = index; std::vector minValues = getTableParamValuesByKey(parameterManager, paramsTableData, ParamMinMaxTable::_minParamKey); std::vector maxValues = getTableParamValuesByKey(parameterManager, paramsTableData, ParamMinMaxTable::_maxParamKey); if ((index >= minValues.size()) || (index >= maxValues.size())) { LOG4CXX_ERROR(_logger, "Index " << index << " outside of table definition => Cannot get real bound"); bound.min = index; bound.max = index + 1; return bound; } bound.min = std::min(minValues[index], maxValues[index]); bound.max = std::max(minValues[index], maxValues[index]); bound.center = (bound.min + bound.max)/2.; return bound; } LinkTable::LinkTable(const char *paramId, int dim, const char* originParamId) : ParamTable(paramId, dim), _originParamId(originParamId), _originTableDim(0) { } ParamTable* LinkTable::getOriginParamTable(ParameterManager* parameterManager) { if (parameterManager == NULL) { return NULL; } ParameterSPtr tmpParam = parameterManager->getParameter(_originParamId); if (tmpParam == nullptr) { return NULL; } ParamInfoSPtr paramInfo = ParamMgr::getInstance()->getParamInfoFromId(tmpParam->getInfoId()); if (paramInfo == nullptr) { return NULL; } boost::shared_ptr tableSPtr = paramInfo->getTable(_originTableDim); if (tableSPtr == nullptr) { return NULL; } return tableSPtr.get(); } std::string LinkTable::getTableParamKeyForInfo(ParameterManager* parameterManager) { std::string res = ""; ParamTable* table = getOriginParamTable(parameterManager); if (table != NULL) { res = table->getTableParamKeyForInfo(parameterManager); } return res; } std::string LinkTable::getName(ParameterManager* parameterManager) { std::string res = ""; ParamTable* table = getOriginParamTable(parameterManager); if (table != NULL) { res = table->getName(parameterManager); } return res; } std::string LinkTable::getUnits(ParameterManager* parameterManager) { std::string res = ""; ParamTable* table = getOriginParamTable(parameterManager); if (table != NULL) { res = table->getUnits(parameterManager); } return res; } bool LinkTable::isVariable(ParameterManager* parameterManager) { bool res = false; ParamTable* table = getOriginParamTable(parameterManager); if (table != NULL) { res = table->isVariable(parameterManager); } return res; } bool LinkTable::isFullVariable(ParameterManager* parameterManager) { bool res = false; ParamTable* table = getOriginParamTable(parameterManager); if (table != NULL) { res = table->isFullVariable(parameterManager); } return res; } std::map& LinkTable::getTableParams(ParameterManager* parameterManager) { ParamTable* table = getOriginParamTable(parameterManager); if (table == NULL) { return _emptyTableParam; } return table->getTableParams(parameterManager); } int LinkTable::getSize(ParameterManager *parameterManager) { ParamTable* table = getOriginParamTable(parameterManager); if (table == NULL) { return 0; } return table->getSize(parameterManager); } t_TableBound LinkTable::getBound(ParameterManager *parameterManager, unsigned int index, std::map>*paramsTableData) { t_TableBound res; ParamTable* table = getOriginParamTable(parameterManager); if (table == NULL) { res.index = index; res.min = index; res.max = index + 1; } else { res = table->getBound(parameterManager, index, paramsTableData); } return res; } bool ParamTable::isInvertedOrder(ParameterManager *parameterManager){ if(this->getSize(parameterManager) <2) return true; double fist_ = getBound(parameterManager, 0).min; double second_ = getBound(parameterManager, 1).min; return (fist_ > second_); } } /* namespace Info */ } /* namespace AMDA */