Add quartiles statistics of the moNeighborhoodStat. Add metho longName in moVectorMonitor.
This commit is contained in:
parent
a3288caf6d
commit
25850272c3
22 changed files with 533 additions and 28 deletions
|
|
@ -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
|
||||
*/
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue