#include <PhysicsTools/Utilities/interface/Sgn.h>
Public Member Functions | |
operator double () const | |
double | operator() () const |
SgnStruct (const T &t) | |
Public Attributes | |
T | _ |
Definition at line 7 of file Sgn.h.
funct::SgnStruct< T >::SgnStruct | ( | const T & | t | ) | [inline] |
funct::SgnStruct< T >::operator double | ( | ) | const [inline] |
Definition at line 10 of file Sgn.h.
References funct::SgnStruct< T >::_.
00010 { return _() >= 0 ? 1 : -1; }
double funct::SgnStruct< T >::operator() | ( | void | ) | const [inline] |
Definition at line 9 of file Sgn.h.
References funct::SgnStruct< T >::_.
00009 { return _() >= 0 ? 1 : -1; }
T funct::SgnStruct< T >::_ |
Definition at line 11 of file Sgn.h.
Referenced by funct::SgnStruct< T >::operator double(), and funct::SgnStruct< T >::operator()().