casa
5.7.0-16
|
The AngularRate class implements a quantity of AngularRate in radians per second. More...
#include <AngularRate.h>
Public Member Functions | |
AngularRate () | |
The nullary constructor (default). More... | |
AngularRate (const AngularRate &) | |
The copy constructor. More... | |
AngularRate (const std::string &s) | |
A constructor from a string representation. More... | |
AngularRate (const asdmIDLTypes::IDLAngularRate &idlAngularRate) | |
A constructor from a CORBA/IDL representation. More... | |
AngularRate (double value) | |
A constructor from a value in double precision. More... | |
virtual | ~AngularRate () |
The destructor. More... | |
void | toBin (EndianOSStream &eoss) |
Write the binary representation of this to an EndianOSStream . More... | |
AngularRate & | operator= (const AngularRate &x) |
An assignment operator AngularRate = AngularRate. More... | |
AngularRate & | operator= (const double d) |
An assignment operator AngularRate = double. More... | |
AngularRate & | operator+= (const AngularRate &x) |
Operator increment and assign. More... | |
AngularRate & | operator-= (const AngularRate &x) |
Operator decrement and assign. More... | |
AngularRate & | operator*= (const double x) |
Operator multiply and assign. More... | |
AngularRate & | operator/= (const double x) |
Operator divide and assign. More... | |
AngularRate | operator+ (const AngularRate &x) const |
Addition operator. More... | |
AngularRate | operator- (const AngularRate &x) const |
Substraction operator. More... | |
AngularRate | operator* (const double x) const |
Multiplication operator. More... | |
AngularRate | operator/ (const double x) const |
Division operator. More... | |
bool | operator< (const AngularRate &x) const |
Comparison operator. More... | |
bool | operator> (const AngularRate &x) const |
Comparison operator. More... | |
bool | operator<= (const AngularRate &x) const |
Comparison operator. More... | |
bool | operator>= (const AngularRate &x) const |
Comparison operator. More... | |
bool | operator== (const AngularRate &x) const |
Comparision operator. More... | |
bool | equals (const AngularRate &x) const |
Comparison method. More... | |
bool | operator!= (const AngularRate &x) const |
Comparison operator. More... | |
bool | isZero () const |
Comparison method. More... | |
AngularRate | operator- () const |
Unary operator. More... | |
AngularRate | operator+ () const |
Unary operator. More... | |
std::string | toString () const |
Converts into a string. More... | |
std::string | toStringI () const |
Idem toString. More... | |
operator std::string () const | |
Conversion operator. More... | |
double | get () const |
Return the double precision value of the AngularRate. More... | |
asdmIDLTypes::IDLAngularRate | toIDLAngularRate () const |
Return the IDLAngularRate representation of the AngularRate. More... | |
Static Public Member Functions | |
static double | fromString (const std::string &s) |
A static method equivalent to the constructor from a string. More... | |
static std::string | toString (double) |
Conversion into string. More... | |
static AngularRate | getAngularRate (StringTokenizer &st) throw (NumberFormatException) |
Parse the next (string) token of a StringTokenizer into an angle. More... | |
static void | toBin (const std::vector< AngularRate > &angle, EndianOSStream &eoss) |
Write the binary representation of a vector of AngularRate to a EndianOSStream. More... | |
static void | toBin (const std::vector< std::vector< AngularRate > > &angle, EndianOSStream &eoss) |
Write the binary representation of a vector of vector of AngularRate to a EndianOSStream. More... | |
static void | toBin (const std::vector< std::vector< std::vector< AngularRate > > > &angle, EndianOSStream &eoss) |
Write the binary representation of a vector of vector of vector of AngularRate to a EndianOSStream. More... | |
static AngularRate | fromBin (EndianIStream &eis) |
Read the binary representation of an AngularRate from a EndianIStream and use the read value to set an AngularRate. More... | |
static std::vector< AngularRate > | from1DBin (EndianIStream &eis) |
Read the binary representation of a vector of AngularRate from an EndianIStream and use the read value to set a vector of AngularRate. More... | |
static std::vector < std::vector< AngularRate > > | from2DBin (EndianIStream &eis) |
Read the binary representation of a vector of vector of AngularRate from an EndianIStream and use the read value to set a vector of vector of AngularRate. More... | |
static std::vector < std::vector< std::vector < AngularRate > > > | from3DBin (EndianIStream &eis) |
Read the binary representation of a vector of vector of vector of AngularRate from an EndianIStream and use the read value to set a vector of vector of vector of AngularRate. More... | |
static std::string | unit () |
Returns the abbreviated name of the unit implicitely associated to any AngularRate. More... | |
Private Attributes | |
double | value |
Friends | |
AngularRate | operator* (double d, const AngularRate &x) |
Overloading of multiplication operator. More... | |
std::ostream & | operator<< (std::ostream &os, const AngularRate &x) |
Overloading of << to output the value an AngularRate on an ostream. More... | |
std::istream & | operator>> (std::istream &is, AngularRate &x) |
Overloading of >> to read an AngularRate from an istream. More... | |
The AngularRate class implements a quantity of AngularRate in radians per second.
Definition at line 53 of file AngularRate.h.
|
inline |
The nullary constructor (default).
AngularRate constructors.
Definition at line 316 of file AngularRate.h.
|
inline |
The copy constructor.
Definition at line 318 of file AngularRate.h.
|
inline |
A constructor from a string representation.
The string passed in argument must be parsable into a double precision number to express the value in radian of the angle.
s | a string. |
Definition at line 324 of file AngularRate.h.
|
inline |
A constructor from a CORBA/IDL representation.
idlAngularRate | a cons ref to an IDLAngularRate. |
Definition at line 321 of file AngularRate.h.
|
inline |
A constructor from a value in double precision.
The value passed in argument defines the value of the AngularRate in radian.
Definition at line 326 of file AngularRate.h.
|
inlinevirtual |
|
inline |
Comparison method.
Equality.
x | a const reference to a AngularRate. |
Definition at line 391 of file AngularRate.h.
References value.
|
static |
Read the binary representation of a vector of AngularRate from an EndianIStream and use the read value to set a vector of AngularRate.
eis | a reference to the EndianIStream to be read |
|
static |
Read the binary representation of a vector of vector of AngularRate from an EndianIStream and use the read value to set a vector of vector of AngularRate.
eis | the EndianIStream to be read |
|
static |
Read the binary representation of a vector of vector of vector of AngularRate from an EndianIStream and use the read value to set a vector of vector of vector of AngularRate.
eis | the EndianIStream to be read |
|
static |
Read the binary representation of an AngularRate from a EndianIStream and use the read value to set an AngularRate.
eis | the EndianStream to be read |
|
static |
A static method equivalent to the constructor from a string.
s | a string?. |
|
inline |
Return the double precision value of the AngularRate.
Definition at line 421 of file AngularRate.h.
References value.
|
static |
Parse the next (string) token of a StringTokenizer into an angle.
st | a reference to a StringTokenizer. |
bool asdm::AngularRate::isZero | ( | ) | const |
Comparison method.
Test nullity.
|
inline |
Conversion operator.
Conversion functions.
Converts into a string.
Definition at line 412 of file AngularRate.h.
References casa::vpf::toString().
|
inline |
Comparison operator.
Not-equal.
x | a const reference to a AngularRate. |
Definition at line 397 of file AngularRate.h.
References value.
|
inline |
Multiplication operator.
x | a value in double precision. |
Definition at line 368 of file AngularRate.h.
References value.
|
inline |
Operator multiply and assign.
x | a value in double precision. |
Definition at line 349 of file AngularRate.h.
References value.
|
inline |
Addition operator.
arithmetic functions
x | a const reference to a AngularRate. |
Definition at line 358 of file AngularRate.h.
References value.
|
inline |
|
inline |
Operator increment and assign.
assignment with arithmetic operators
x | a const reference to an AngularRate. |
Definition at line 341 of file AngularRate.h.
References value.
|
inline |
Substraction operator.
x | a const reference to a AngularRate. |
Definition at line 363 of file AngularRate.h.
References value.
|
inline |
Unary operator.
unary - and + operators
Opposite.
Definition at line 401 of file AngularRate.h.
References value.
|
inline |
Operator decrement and assign.
x | a const reference to an AngularRate. |
Definition at line 345 of file AngularRate.h.
References value.
|
inline |
Division operator.
d | a value in double precision. |
Definition at line 373 of file AngularRate.h.
References value.
|
inline |
Operator divide and assign.
x | a valye in double precision. |
Definition at line 353 of file AngularRate.h.
References value.
|
inline |
Comparison operator.
comparison operators
Less-than.
x | a const reference to a AngularRate. |
Definition at line 379 of file AngularRate.h.
References value.
|
inline |
Comparison operator.
Less-than or equal.
x | a const reference to a AngularRate. |
Definition at line 385 of file AngularRate.h.
References value.
|
inline |
An assignment operator AngularRate = AngularRate.
assignment operator
x | a const reference to an AngularRate. |
Definition at line 331 of file AngularRate.h.
References value.
|
inline |
An assignment operator AngularRate = double.
assignment operator
d | a value in double precision. |
Definition at line 336 of file AngularRate.h.
References value.
|
inline |
Comparision operator.
Equal-to.
x | a const reference to a AngularRate. |
Definition at line 394 of file AngularRate.h.
References value.
|
inline |
Comparison operator.
Greater-than.
x | a const reference to a AngularRate. |
Definition at line 382 of file AngularRate.h.
References value.
|
inline |
Comparison operator.
Greater-than or equal.
x | a const reference to a AngularRate. |
Definition at line 388 of file AngularRate.h.
References value.
void asdm::AngularRate::toBin | ( | EndianOSStream & | eoss | ) |
Write the binary representation of this to an EndianOSStream .
eoss | a reference to an EndianOSStream . |
|
static |
Write the binary representation of a vector of AngularRate to a EndianOSStream.
angle | the vector of AngularRate to be written |
eoss | the EndianOSStream to be written to |
|
static |
Write the binary representation of a vector of vector of AngularRate to a EndianOSStream.
angle | the vector of vector of AngularRate to be written |
eoss | the EndianOSStream to be written to |
|
static |
Write the binary representation of a vector of vector of vector of AngularRate to a EndianOSStream.
angle | the vector of vector of vector of AngularRate to be written |
eoss | the EndianOSStream to be written to |
|
inline |
Return the IDLAngularRate representation of the AngularRate.
Definition at line 425 of file AngularRate.h.
References value.
|
static |
Conversion into string.
The resulting string contains the representation of the value of this AngularRate.
|
inline |
Converts into a string.
Definition at line 415 of file AngularRate.h.
References value.
Referenced by toStringI().
|
inline |
|
inlinestatic |
Returns the abbreviated name of the unit implicitely associated to any AngularRate.
Definition at line 445 of file AngularRate.h.
Referenced by casa::MS2ASDM::unitASDMAngularRate().
|
friend |
Overloading of multiplication operator.
d | a value in double precision . |
x | a const reference to a AngularRate . |
|
friend |
Overloading of << to output the value an AngularRate on an ostream.
os | a reference to the ostream to be written on. |
x | a const reference to a AngularRate. |
|
friend |
Overloading of >> to read an AngularRate from an istream.
|
private |
Definition at line 313 of file AngularRate.h.
Referenced by equals(), get(), operator!=(), asdm::operator*(), operator*(), operator*=(), operator+(), operator+=(), operator-(), operator-=(), operator/(), operator/=(), operator<(), asdm::operator<<(), operator<=(), operator=(), operator==(), operator>(), operator>=(), asdm::operator>>(), toIDLAngularRate(), toString(), and toStringI().