Line data Source code
1 : //Pressure.h generated on 'Thu Feb 04 10:20:05 CET 2010'. Edit at your own risk. 2 : /* 3 : * ALMA - Atacama Large Millimeter Array 4 : * (c) European Southern Observatory, 2002 5 : * (c) Associated Universities Inc., 2002 6 : * Copyright by ESO (in the framework of the ALMA collaboration), 7 : * Copyright by AUI (in the framework of the ALMA collaboration), 8 : * All rights reserved. 9 : * 10 : * This library is free software; you can redistribute it and/or 11 : * modify it under the terms of the GNU Lesser General Public 12 : * License as published by the Free software Foundation; either 13 : * version 2.1 of the License, or (at your option) any later version. 14 : * 15 : * This library is distributed in the hope that it will be useful, 16 : * but WITHOUT ANY WARRANTY, without even the implied warranty of 17 : * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 18 : * Lesser General Public License for more details. 19 : * 20 : * You should have received a copy of the GNU Lesser General Public 21 : * License along with this library; if not, write to the Free Software 22 : * Foundation, Inc., 59 Temple Place, Suite 330, Boston, 23 : * MA 02111-1307 USA 24 : * 25 : * File Pressure.h 26 : */ 27 : #ifndef Pressure_CLASS 28 : #define Pressure_CLASS 29 : #include <vector> 30 : #include <iostream> 31 : #include <string> 32 : #ifndef WITHOUT_ACS 33 : #include <asdmIDLTypesC.h> 34 : #endif 35 : #include <alma/ASDM/StringTokenizer.h> 36 : #include <alma/ASDM/NumberFormatException.h> 37 : #include <alma/ASDM/EndianStream.h> 38 : namespace asdm { 39 : class Pressure; 40 : Pressure operator * ( double , const Pressure & ); 41 : std::ostream & operator << ( std::ostream &, const Pressure & ); 42 : std::istream & operator >> ( std::istream &, Pressure &); 43 : /** 44 : * The Pressure class implements a quantity of pressure in hectopascals.. 45 : * 46 : * @version 1.00 Jan. 7, 2005 47 : * @author Allen Farris 48 : * 49 : * @version 1.1 Aug 8, 2006 50 : * @author Michel Caillat 51 : * added toBin/fromBin methods. 52 : */ 53 : class Pressure { 54 : /** 55 : * Overloading of multiplication operator. 56 : * @param d a value in double precision . 57 : * @param x a const reference to a Pressure . 58 : * @return a Pressure 59 : */ 60 : friend Pressure operator * ( double d, const Pressure & x ); 61 : /** 62 : * Overloading of << to output the value an Pressure on an ostream. 63 : * @param os a reference to the ostream to be written on. 64 : * @param x a const reference to a Pressure. 65 : */ 66 : friend std::ostream & operator << ( std::ostream & os, const Pressure & x); 67 : /** 68 : * Overloading of >> to read an Pressure from an istream. 69 : */ 70 : friend std::istream & operator >> ( std::istream & is, Pressure & x); 71 : public: 72 : /** 73 : * The nullary constructor (default). 74 : */ 75 : Pressure(); 76 : /** 77 : * The copy constructor. 78 : */ 79 : Pressure(const Pressure &); 80 : /** 81 : * A constructor from a string representation. 82 : * The string passed in argument must be parsable into a double precision 83 : * number to express the value in radian of the angle. 84 : * 85 : * @param s a string. 86 : */ 87 : Pressure(const std::string &s); 88 : #ifndef WITHOUT_ACS 89 : /** 90 : * 91 : * A constructor from a CORBA/IDL representation. 92 : * 93 : * @param idlPressure a cons ref to an IDLPressure. 94 : */ 95 : Pressure(const asdmIDLTypes::IDLPressure & idlPressure); 96 : #endif 97 : /** 98 : * A constructor from a value in double precision. 99 : * The value passed in argument defines the value of the Pressure in radian. 100 : */ 101 : Pressure(double value); 102 : /** 103 : * The destructor. 104 : */ 105 : virtual ~Pressure(); 106 : /** 107 : * A static method equivalent to the constructor from a string. 108 : * @param s a string?. 109 : */ 110 : static double fromString(const std::string& s); 111 : /** 112 : * Conversion into string. 113 : * The resulting string contains the representation of the value of this Pressure. 114 : * 115 : * @return string 116 : */ 117 : static std::string toString(double); 118 : /** 119 : * Parse the next (string) token of a StringTokenizer into an angle. 120 : * @param st a reference to a StringTokenizer. 121 : * @return an Pressure. 122 : */ 123 : static Pressure getPressure(StringTokenizer &st); 124 : 125 : /** 126 : * Write the binary representation of this to an EndianOSStream . 127 : * @param eoss a reference to an EndianOSStream . 128 : */ 129 : void toBin(EndianOSStream& eoss); 130 : /** 131 : * Write the binary representation of a vector of Pressure to a EndianOSStream. 132 : * @param angle the vector of Pressure to be written 133 : * @param eoss the EndianOSStream to be written to 134 : */ 135 : static void toBin(const std::vector<Pressure>& angle, EndianOSStream& eoss); 136 : 137 : /** 138 : * Write the binary representation of a vector of vector of Pressure to a EndianOSStream. 139 : * @param angle the vector of vector of Pressure to be written 140 : * @param eoss the EndianOSStream to be written to 141 : */ 142 : static void toBin(const std::vector<std::vector<Pressure> >& angle, EndianOSStream& eoss); 143 : 144 : /** 145 : * Write the binary representation of a vector of vector of vector of Pressure to a EndianOSStream. 146 : * @param angle the vector of vector of vector of Pressure to be written 147 : * @param eoss the EndianOSStream to be written to 148 : */ 149 : static void toBin(const std::vector<std::vector<std::vector<Pressure> > >& angle, EndianOSStream& eoss); 150 : /** 151 : * Read the binary representation of an Pressure from a EndianIStream 152 : * and use the read value to set an Pressure. 153 : * @param eis the EndianStream to be read 154 : * @return an Pressure 155 : */ 156 : static Pressure fromBin(EndianIStream& eis); 157 : 158 : /** 159 : * Read the binary representation of a vector of Pressure from an EndianIStream 160 : * and use the read value to set a vector of Pressure. 161 : * @param eis a reference to the EndianIStream to be read 162 : * @return a vector of Pressure 163 : */ 164 : static std::vector<Pressure> from1DBin(EndianIStream & eis); 165 : 166 : /** 167 : * Read the binary representation of a vector of vector of Pressure from an EndianIStream 168 : * and use the read value to set a vector of vector of Pressure. 169 : * @param eis the EndianIStream to be read 170 : * @return a vector of vector of Pressure 171 : */ 172 : static std::vector<std::vector<Pressure> > from2DBin(EndianIStream & eis); 173 : 174 : /** 175 : * Read the binary representation of a vector of vector of vector of Pressure from an EndianIStream 176 : * and use the read value to set a vector of vector of vector of Pressure. 177 : * @param eis the EndianIStream to be read 178 : * @return a vector of vector of vector of Pressure 179 : */ 180 : static std::vector<std::vector<std::vector<Pressure> > > from3DBin(EndianIStream & eis); 181 : 182 : /** 183 : * An assignment operator Pressure = Pressure. 184 : * @param x a const reference to an Pressure. 185 : */ 186 : Pressure & operator = (const Pressure & x); 187 : 188 : /** 189 : * An assignment operator Pressure = double. 190 : * @param d a value in double precision. 191 : */ 192 : Pressure & operator = (const double d); 193 : /** 194 : * Operator increment and assign. 195 : * @param x a const reference to an Pressure. 196 : */ 197 : Pressure & operator += (const Pressure & x); 198 : /** 199 : * Operator decrement and assign. 200 : * @param x a const reference to an Pressure. 201 : */ 202 : Pressure & operator -= (const Pressure & x); 203 : /** 204 : * Operator multiply and assign. 205 : * @param x a value in double precision. 206 : */ 207 : Pressure & operator *= (const double x); 208 : /** 209 : * Operator divide and assign. 210 : * @param x a valye in double precision. 211 : */ 212 : Pressure & operator /= (const double x); 213 : /** 214 : * Addition operator. 215 : * @param x a const reference to a Pressure. 216 : */ 217 : Pressure operator + (const Pressure & x) const; 218 : /** 219 : * Substraction operator. 220 : * @param x a const reference to a Pressure. 221 : */ 222 : Pressure operator - (const Pressure & x) const; 223 : /** 224 : * Multiplication operator. 225 : * @param x a value in double precision. 226 : */ 227 : Pressure operator * (const double x) const; 228 : /** 229 : * Division operator. 230 : * @param d a value in double precision. 231 : */ 232 : Pressure operator / (const double x) const; 233 : /** 234 : * Comparison operator. Less-than. 235 : * @param x a const reference to a Pressure. 236 : */ 237 : bool operator < (const Pressure & x) const; 238 : /** 239 : * Comparison operator. Greater-than. 240 : * @param x a const reference to a Pressure. 241 : */ 242 : bool operator > (const Pressure & x) const; 243 : /** 244 : * Comparison operator. Less-than or equal. 245 : * @param x a const reference to a Pressure. 246 : */ 247 : bool operator <= (const Pressure & x) const; 248 : /** 249 : * Comparison operator. Greater-than or equal. 250 : * @param x a const reference to a Pressure. 251 : */ 252 : bool operator >= (const Pressure & x) const; 253 : /** 254 : * Comparision operator. Equal-to. 255 : * @param x a const reference to a Pressure. 256 : */ 257 : bool operator == (const Pressure & x) const; 258 : /** 259 : * Comparison method. Equality. 260 : * @param x a const reference to a Pressure. 261 : */ 262 : bool equals(const Pressure & x) const; 263 : /** 264 : * Comparison operator. Not-equal. 265 : * @param x a const reference to a Pressure. 266 : */ 267 : bool operator != (const Pressure & x) const; 268 : /** 269 : * Comparison method. Test nullity. 270 : * @return a bool. 271 : */ 272 : bool isZero() const; 273 : /** 274 : * Unary operator. Opposite. 275 : */ 276 : Pressure operator - () const; 277 : /** 278 : * Unary operator. Unary plus. 279 : */ 280 : Pressure operator + () const; 281 : /** 282 : * Converts into a string. 283 : * @return a string containing the representation of a the value in double precision. 284 : */ 285 : std::string toString() const; 286 : /** 287 : * Idem toString. 288 : */ 289 : std::string toStringI() const; 290 : /** 291 : * Conversion operator. 292 : * Converts into a string. 293 : */ 294 : operator std::string () const; 295 : /** 296 : * Return the double precision value of the Pressure. 297 : * @return double 298 : */ 299 : double get() const; 300 : #ifndef WITHOUT_ACS 301 : /** 302 : * Return the IDLPressure representation of the Pressure. 303 : * @return IDLPressure 304 : */ 305 : asdmIDLTypes::IDLPressure toIDLPressure() const; 306 : #endif 307 : /** 308 : * Returns the abbreviated name of the unit implicitely associated to any Pressure. 309 : * @return string 310 : */ 311 : static std::string unit(); 312 : private: 313 : double value; 314 : }; 315 : // Pressure constructors 316 15455 : inline Pressure::Pressure() : value(0.0) { 317 15455 : } 318 4516 : inline Pressure::Pressure(const Pressure &t) : value(t.value) { 319 4516 : } 320 : #ifndef WITHOUT_ACS 321 : inline Pressure::Pressure(const asdmIDLTypes::IDLPressure &l) : value(l.value) { 322 : } 323 : #endif 324 15455 : inline Pressure::Pressure(const std::string &s) : value(fromString(s)) { 325 15455 : } 326 0 : inline Pressure::Pressure(double v) : value(v) { 327 0 : } 328 : // Pressure destructor 329 0 : inline Pressure::~Pressure() { } 330 : // assignment operator 331 15455 : inline Pressure & Pressure::operator = ( const Pressure &t ) { 332 15455 : value = t.value; 333 15455 : return *this; 334 : } 335 : // assignment operator 336 : inline Pressure & Pressure::operator = ( const double v ) { 337 : value = v; 338 : return *this; 339 : } 340 : // assignment with arithmetic operators 341 : inline Pressure & Pressure::operator += ( const Pressure & t) { 342 : value += t.value; 343 : return *this; 344 : } 345 : inline Pressure & Pressure::operator -= ( const Pressure & t) { 346 : value -= t.value; 347 : return *this; 348 : } 349 : inline Pressure & Pressure::operator *= ( const double n) { 350 : value *= n; 351 : return *this; 352 : } 353 : inline Pressure & Pressure::operator /= ( const double n) { 354 : value /= n; 355 : return *this; 356 : } 357 : // arithmetic functions 358 : inline Pressure Pressure::operator + ( const Pressure &t2 ) const { 359 : Pressure tmp; 360 : tmp.value = value + t2.value; 361 : return tmp; 362 : } 363 : inline Pressure Pressure::operator - ( const Pressure &t2 ) const { 364 : Pressure tmp; 365 : tmp.value = value - t2.value; 366 : return tmp; 367 : } 368 : inline Pressure Pressure::operator * ( const double n) const { 369 : Pressure tmp; 370 : tmp.value = value * n; 371 : return tmp; 372 : } 373 : inline Pressure Pressure::operator / ( const double n) const { 374 : Pressure tmp; 375 : tmp.value = value / n; 376 : return tmp; 377 : } 378 : // comparison operators 379 : inline bool Pressure::operator < (const Pressure & x) const { 380 : return (value < x.value); 381 : } 382 : inline bool Pressure::operator > (const Pressure & x) const { 383 : return (value > x.value); 384 : } 385 : inline bool Pressure::operator <= (const Pressure & x) const { 386 : return (value <= x.value); 387 : } 388 : inline bool Pressure::operator >= (const Pressure & x) const { 389 : return (value >= x.value); 390 : } 391 : inline bool Pressure::equals(const Pressure & x) const { 392 : return (value == x.value); 393 : } 394 0 : inline bool Pressure::operator == (const Pressure & x) const { 395 0 : return (value == x.value); 396 : } 397 0 : inline bool Pressure::operator != (const Pressure & x) const { 398 0 : return (value != x.value); 399 : } 400 : // unary - and + operators 401 : inline Pressure Pressure::operator - () const { 402 : Pressure tmp; 403 : tmp.value = -value; 404 : return tmp; 405 : } 406 : inline Pressure Pressure::operator + () const { 407 : Pressure tmp; 408 : tmp.value = value; 409 : return tmp; 410 : } 411 : // Conversion functions 412 : inline Pressure::operator std::string () const { 413 : return toString(); 414 : } 415 0 : inline std::string Pressure::toString() const { 416 0 : return toString(value); 417 : } 418 : inline std::string Pressure::toStringI() const { 419 : return toString(value); 420 : } 421 0 : inline double Pressure::get() const { 422 0 : return value; 423 : } 424 : #ifndef WITHOUT_ACS 425 : inline asdmIDLTypes::IDLPressure Pressure::toIDLPressure() const { 426 : asdmIDLTypes::IDLPressure tmp; 427 : tmp.value = value; 428 : return tmp; 429 : } 430 : #endif 431 : // Friend functions 432 : inline Pressure operator * ( double n, const Pressure &x) { 433 : Pressure tmp; 434 : tmp.value = x.value * n; 435 : return tmp; 436 : } 437 : inline std::ostream & operator << ( std::ostream &o, const Pressure &x ) { 438 : o << x.value; 439 : return o; 440 : } 441 0 : inline std::istream & operator >> ( std::istream &i, Pressure &x ) { 442 0 : i >> x.value; 443 0 : return i; 444 : } 445 : inline std::string Pressure::unit() { 446 : return std::string ("hPa"); 447 : } 448 : } // End namespace asdm 449 : #endif /* Pressure_CLASS */