|
|
|
|
|
|
|
|
public: |
|
|
public: |
|
|
|
|
|
|
|
|
RangePoint() : // The simple constructor sets all to zero. |
|
|
RangePoint() : // The simple constructor sets all to zero. |
|
|
Confidence(0.0), |
|
|
|
|
|
Probability(0.0) {} |
|
|
|
|
|
|
|
|
Probability(0.0), |
|
|
|
|
|
Confidence(0.0) {} |
|
|
|
|
|
|
|
|
RangePoint(double C, double P) : // This constructor sets the values. |
|
|
RangePoint(double C, double P) : // This constructor sets the values. |
|
|
Confidence(C), |
|
|
|
|
|
Probability(P) {} |
|
|
|
|
|
|
|
|
Probability(P), |
|
|
|
|
|
Confidence(C) {} |
|
|
|
|
|
|
|
|
double Probability; // Probability and Confidence are |
|
|
double Probability; // Probability and Confidence are |
|
|
double Confidence; // freely accessible. |
|
|
double Confidence; // freely accessible. |