#include <iostream>#include <map>#include "Rtypes.h"Go to the source code of this file.
Namespaces | |
| namespace | Anp |
Classes | |
| class | Anp::FitPoint |
Functions | |
| bool | operator== (const FitPoint &lhs, const FitPoint &rhs) |
| bool | operator< (const FitPoint &lhs, const FitPoint &rhs) |
| bool | operator< (double value, const FitPoint &fit) |
| bool | operator< (const FitPoint &rhs, double value) |
| bool | operator== (int index, const FitPoint &fit) |
| bool | operator== (const FitPoint &fit, int index) |
|
||||||||||||
|
Definition at line 200 of file FitPoint.cxx. References Anp::FitPoint::X(). 00201 {
00202 return (fit.X() < value);
00203 }
|
|
||||||||||||
|
Definition at line 206 of file FitPoint.cxx. References Anp::FitPoint::X(). 00207 {
00208 return (value < fit.X());
00209 }
|
|
||||||||||||
|
Definition at line 194 of file FitPoint.cxx. References Anp::FitPoint::X(). 00195 {
00196 return (lhs.X() < rhs.X());
00197 }
|
|
||||||||||||
|
Definition at line 218 of file FitPoint.cxx. References Anp::FitPoint::Index(). 00219 {
00220 return (index == fit.Index());
00221 }
|
|
||||||||||||
|
Definition at line 212 of file FitPoint.cxx. References Anp::FitPoint::Index(). 00213 {
00214 return (index == fit.Index());
00215 }
|
|
||||||||||||
|
Definition at line 188 of file FitPoint.cxx. References Anp::FitPoint::Index(). 00189 {
00190 return (lhs.Index() == rhs.Index());
00191 }
|
1.3.9.1