Main Page | Modules | Namespace List | Class Hierarchy | Alphabetical List | Class List | Directories | File List | Namespace Members | Class Members | File Members | Related Pages

FitPoint.h File Reference

#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)


Function Documentation

bool Anp::operator< const FitPoint &  rhs,
double  value
 

Definition at line 200 of file FitPoint.cxx.

References Anp::FitPoint::X().

00201 {
00202    return (fit.X() < value);
00203 }

bool Anp::operator< double  value,
const FitPoint &  fit
 

Definition at line 206 of file FitPoint.cxx.

References Anp::FitPoint::X().

00207 {
00208    return (value < fit.X());
00209 }

bool Anp::operator< const FitPoint &  lhs,
const FitPoint &  rhs
 

Definition at line 194 of file FitPoint.cxx.

References Anp::FitPoint::X().

00195 {
00196    return (lhs.X() < rhs.X());
00197 }

bool Anp::operator== const FitPoint &  fit,
int  index
 

Definition at line 218 of file FitPoint.cxx.

References Anp::FitPoint::Index().

00219 {
00220    return (index == fit.Index());
00221 }

bool Anp::operator== int  index,
const FitPoint &  fit
 

Definition at line 212 of file FitPoint.cxx.

References Anp::FitPoint::Index().

00213 {
00214    return (index == fit.Index());
00215 }

bool Anp::operator== const FitPoint &  lhs,
const FitPoint &  rhs
 

Definition at line 188 of file FitPoint.cxx.

References Anp::FitPoint::Index().

00189 {
00190    return (lhs.Index() == rhs.Index());
00191 }


Generated on Mon Feb 15 11:07:57 2010 for loon by  doxygen 1.3.9.1