![]() |
Computer Assited Medical Intervention Tool Kit
version 4.0
|
A Threshold method is a method where individualTest is true is the tested double is inferior or equal to a fixed value. More...
#include <Threshold.h>
Inherits Method.
Public Member Functions | |
bool | individualTest (double tested) |
return true if tested <= value More... | |
Threshold (mml::Threshold *m) | |
constructor More... | |
std::string | toString () |
get Method name More... | |
~Threshold () | |
destructor More... | |
![]() | |
Method (mml::Method *m) | |
constructor More... | |
std::string | scopeTosString () |
get a String of the scope More... | |
virtual bool | test (std::vector< double > &values) |
return true if the vector of fouble values passed the test (see scope) More... | |
virtual | ~Method () |
destructor More... | |
Private Attributes | |
mml::Threshold * | mappedObject |
the xsdcxx object representing Threshold, used for serialization More... | |
double | value |
value of the threshold More... | |
Additional Inherited Members | |
![]() | |
enum | ScopeType { Any, Average, Sum, None } |
the scope of the method More... | |
![]() | |
ScopeType | scope |
scope of the method Any: test is true if all indivitual test are true in the values vector Average: test is true if the indivudal test of values vector's average is true Sum: test is true if the indivudal test of the sum of all double of the values vector is true None: used for monitor wich are not applied to a structural component (ex: time) More... | |
A Threshold method is a method where individualTest is true is the tested double is inferior or equal to a fixed value.
Threshold::Threshold | ( | mml::Threshold * | m | ) |
Threshold::~Threshold | ( | ) |
destructor
|
virtual |
|
private |
the xsdcxx object representing Threshold, used for serialization
|
private |
value of the threshold
Referenced by individualTest(), Threshold(), and toString().