LCOV - code coverage report
Current view: top level - alma/Enumerations - CPointingModelMode.cc (source / functions) Hit Total Coverage
Test: casacpp_coverage.info Lines: 0 56 0.0 %
Date: 2024-10-29 13:38:20 Functions: 0 12 0.0 %

          Line data    Source code
       1             : 
       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             :  * /////////////////////////////////////////////////////////////////
      26             :  * // WARNING!  DO NOT MODIFY THIS FILE!                          //
      27             :  * //  ---------------------------------------------------------  //
      28             :  * // | This is generated code!  Do not modify this file.       | //
      29             :  * // | Any changes will be lost when the file is re-generated. | //
      30             :  * //  ---------------------------------------------------------  //
      31             :  * /////////////////////////////////////////////////////////////////
      32             :  *
      33             :  * File CPointingModelMode.cpp
      34             :  */
      35             : #include <sstream>
      36             : #include <alma/Enumerations/CPointingModelMode.h>
      37             : #include <string>
      38             : using namespace std;
      39             : 
      40           0 : int CPointingModelMode::version() {
      41           0 :         return PointingModelModeMod::version;
      42             :         }
      43             :         
      44           0 : string CPointingModelMode::revision () {
      45           0 :         return PointingModelModeMod::revision;
      46             : }
      47             : 
      48           0 : unsigned int CPointingModelMode::size() {
      49           0 :         return 2;
      50             :         }
      51             :         
      52             :         
      53             : const std::string& CPointingModelMode::sRADIO = "RADIO";
      54             :         
      55             : const std::string& CPointingModelMode::sOPTICAL = "OPTICAL";
      56             :         
      57           0 : const std::vector<std::string> CPointingModelMode::names() {
      58           0 :     std::vector<std::string> enumSet;
      59             :     
      60           0 :     enumSet.insert(enumSet.end(), CPointingModelMode::sRADIO);
      61             :     
      62           0 :     enumSet.insert(enumSet.end(), CPointingModelMode::sOPTICAL);
      63             :         
      64           0 :     return enumSet;
      65           0 : }
      66             : 
      67           0 : std::string CPointingModelMode::name(const PointingModelModeMod::PointingModelMode& f) {
      68           0 :     switch (f) {
      69             :     
      70           0 :     case PointingModelModeMod::RADIO:
      71           0 :       return CPointingModelMode::sRADIO;
      72             :     
      73           0 :     case PointingModelModeMod::OPTICAL:
      74           0 :       return CPointingModelMode::sOPTICAL;
      75             :         
      76             :     }
      77             :     // Impossible siutation but....who knows with C++ enums
      78           0 :     throw badInt((int) f);
      79             : }
      80             : 
      81           0 : PointingModelModeMod::PointingModelMode CPointingModelMode::newPointingModelMode(const std::string& name) {
      82             :                 
      83           0 :     if (name == CPointingModelMode::sRADIO) {
      84           0 :         return PointingModelModeMod::RADIO;
      85             :     }
      86             :         
      87           0 :     if (name == CPointingModelMode::sOPTICAL) {
      88           0 :         return PointingModelModeMod::OPTICAL;
      89             :     }
      90             :     
      91           0 :     throw badString(name);
      92             : }
      93             : 
      94           0 : PointingModelModeMod::PointingModelMode CPointingModelMode::literal(const std::string& name) {
      95             :                 
      96           0 :     if (name == CPointingModelMode::sRADIO) {
      97           0 :         return PointingModelModeMod::RADIO;
      98             :     }
      99             :         
     100           0 :     if (name == CPointingModelMode::sOPTICAL) {
     101           0 :         return PointingModelModeMod::OPTICAL;
     102             :     }
     103             :     
     104           0 :     throw badString(name);
     105             : }
     106             : 
     107           0 : PointingModelModeMod::PointingModelMode CPointingModelMode::from_int(unsigned int i) {
     108           0 :         vector<string> names_ = names();
     109           0 :         if (i >= names_.size()) throw badInt(i);
     110           0 :         return newPointingModelMode(names_.at(i));
     111           0 : }
     112             : 
     113           0 : string CPointingModelMode::badString(const string& name) {
     114           0 :         return "'"+name+"' does not correspond to any literal in the enumeration 'PointingModelMode'.";
     115             : }
     116             : 
     117           0 : string CPointingModelMode::badInt(unsigned int i) {
     118           0 :         ostringstream oss ;
     119           0 :         oss << "'" << i << "' is out of range for the enumeration 'PointingModelMode'.";
     120           0 :         return oss.str();
     121           0 : }
     122             : 
     123             : namespace PointingModelModeMod {
     124           0 :         std::ostream & operator << ( std::ostream & out, const PointingModelMode& value) {
     125           0 :                 out << CPointingModelMode::name(value);
     126           0 :                 return out;
     127             :         }
     128             : 
     129           0 :         std::istream & operator >> ( std::istream & in , PointingModelMode& value ) {
     130           0 :                 in.clear();
     131           0 :                 string s ; 
     132           0 :                 in >> s;
     133             :                 try {
     134           0 :                 value = CPointingModelMode::literal(s);
     135             :                 }
     136           0 :                 catch (string & m) {
     137           0 :                 in.setstate(ios::failbit);
     138           0 :                 }
     139           0 :                 return in;
     140           0 :         }
     141             : }
     142             : 

Generated by: LCOV version 1.16