Add quartiles statistics of the moNeighborhoodStat. Add metho longName in moVectorMonitor.

This commit is contained in:
verel 2014-10-23 14:00:17 +02:00
commit 25850272c3
22 changed files with 533 additions and 28 deletions

View file

@ -174,6 +174,24 @@ public:
return os.str();
}
/**
* Returns the long name of the statistic (which is a eoParam)
*
* @return longName of the statistic
*/
const std::string& longName() const {
if (doubleParam != NULL)
return doubleParam->longName();
else
if (intParam != NULL)
return intParam->longName();
else
if (intLongParam != NULL)
return intLongParam->longName();
else
return eotParam->longName();
}
/**
* clear the vector
*/