All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Defines
Information about a generated model to be added. More...
#include <NewModel.h>
Public Member Functions | |
| void | addNavigatorHit (int activeModelIndex) |
| bool | isValidMisfit () const |
| bool | isValidParent () const |
| double | misfit () const |
| int | modelIndex () const |
| const QVector< int > & | navigatorHits () const |
| NewModel () | |
| ParentIndex * | parentIndex () const |
| void | setMisfit (double m) |
| void | setModelIndex (int i) |
| void | setParentIndex (ParentIndex *p) |
| void | setValidMisfit (bool v) |
| void | setValidParent (bool v) |
| ~NewModel () | |
Information about a generated model to be added.
| DinverCore::NewModel::NewModel | ( | ) | [inline] |
{
_modelIndex=-1;
_validParent=false;
_parentIndex=0;
_validMisfit=false;
}
| DinverCore::NewModel::~NewModel | ( | ) | [inline] |
{
delete _parentIndex;
}
| void DinverCore::NewModel::addNavigatorHit | ( | int | activeModelIndex | ) | [inline] |
{_navigatorHits.append(activeModelIndex);}
| bool DinverCore::NewModel::isValidMisfit | ( | ) | const [inline] |
Referenced by DinverCore::ModelRepository::addReport(), and DinverCore::GeneratorModels::commitStatistics().
{return _validMisfit;}
| bool DinverCore::NewModel::isValidParent | ( | ) | const [inline] |
Referenced by DinverCore::ModelRepository::addReport(), and DinverCore::GeneratorModels::commitStatistics().
{return _validParent;}
| double DinverCore::NewModel::misfit | ( | ) | const [inline] |
Referenced by DinverCore::ModelRepository::addReport().
{return _misfit;}
| int DinverCore::NewModel::modelIndex | ( | ) | const [inline] |
{return _modelIndex;}
| const QVector<int>& DinverCore::NewModel::navigatorHits | ( | ) | const [inline] |
Referenced by DinverCore::GeneratorModels::commitStatistics().
{return _navigatorHits;}
| ParentIndex* DinverCore::NewModel::parentIndex | ( | ) | const [inline] |
Referenced by DinverCore::GeneratorModels::commitStatistics().
{return _parentIndex;}
| void DinverCore::NewModel::setMisfit | ( | double | m | ) | [inline] |
{_misfit=m;}
| void DinverCore::NewModel::setModelIndex | ( | int | i | ) | [inline] |
{_modelIndex=i;}
| void DinverCore::NewModel::setParentIndex | ( | ParentIndex * | p | ) | [inline] |
{_parentIndex=p;}
| void DinverCore::NewModel::setValidMisfit | ( | bool | v | ) | [inline] |
{_validMisfit=v;}
| void DinverCore::NewModel::setValidParent | ( | bool | v | ) | [inline] |
{_validParent=v;}