LCOV - code coverage report
Current view: top level - alma/Enumerations - CPositionMethod.cc (source / functions) Hit Total Coverage
Test: casacpp_coverage.info Lines: 0 56 0.0 %
Date: 2024-11-06 17:42:47 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 CPositionMethod.cpp
      34             :  */
      35             : #include <sstream>
      36             : #include <alma/Enumerations/CPositionMethod.h>
      37             : #include <string>
      38             : using namespace std;
      39             : 
      40           0 : int CPositionMethod::version() {
      41           0 :         return PositionMethodMod::version;
      42             :         }
      43             :         
      44           0 : string CPositionMethod::revision () {
      45           0 :         return PositionMethodMod::revision;
      46             : }
      47             : 
      48           0 : unsigned int CPositionMethod::size() {
      49           0 :         return 2;
      50             :         }
      51             :         
      52             :         
      53             : const std::string& CPositionMethod::sDELAY_FITTING = "DELAY_FITTING";
      54             :         
      55             : const std::string& CPositionMethod::sPHASE_FITTING = "PHASE_FITTING";
      56             :         
      57           0 : const std::vector<std::string> CPositionMethod::names() {
      58           0 :     std::vector<std::string> enumSet;
      59             :     
      60           0 :     enumSet.insert(enumSet.end(), CPositionMethod::sDELAY_FITTING);
      61             :     
      62           0 :     enumSet.insert(enumSet.end(), CPositionMethod::sPHASE_FITTING);
      63             :         
      64           0 :     return enumSet;
      65           0 : }
      66             : 
      67           0 : std::string CPositionMethod::name(const PositionMethodMod::PositionMethod& f) {
      68           0 :     switch (f) {
      69             :     
      70           0 :     case PositionMethodMod::DELAY_FITTING:
      71           0 :       return CPositionMethod::sDELAY_FITTING;
      72             :     
      73           0 :     case PositionMethodMod::PHASE_FITTING:
      74           0 :       return CPositionMethod::sPHASE_FITTING;
      75             :         
      76             :     }
      77             :     // Impossible siutation but....who knows with C++ enums
      78           0 :     throw badInt((int) f);
      79             : }
      80             : 
      81           0 : PositionMethodMod::PositionMethod CPositionMethod::newPositionMethod(const std::string& name) {
      82             :                 
      83           0 :     if (name == CPositionMethod::sDELAY_FITTING) {
      84           0 :         return PositionMethodMod::DELAY_FITTING;
      85             :     }
      86             :         
      87           0 :     if (name == CPositionMethod::sPHASE_FITTING) {
      88           0 :         return PositionMethodMod::PHASE_FITTING;
      89             :     }
      90             :     
      91           0 :     throw badString(name);
      92             : }
      93             : 
      94           0 : PositionMethodMod::PositionMethod CPositionMethod::literal(const std::string& name) {
      95             :                 
      96           0 :     if (name == CPositionMethod::sDELAY_FITTING) {
      97           0 :         return PositionMethodMod::DELAY_FITTING;
      98             :     }
      99             :         
     100           0 :     if (name == CPositionMethod::sPHASE_FITTING) {
     101           0 :         return PositionMethodMod::PHASE_FITTING;
     102             :     }
     103             :     
     104           0 :     throw badString(name);
     105             : }
     106             : 
     107           0 : PositionMethodMod::PositionMethod CPositionMethod::from_int(unsigned int i) {
     108           0 :         vector<string> names_ = names();
     109           0 :         if (i >= names_.size()) throw badInt(i);
     110           0 :         return newPositionMethod(names_.at(i));
     111           0 : }
     112             : 
     113           0 : string CPositionMethod::badString(const string& name) {
     114           0 :         return "'"+name+"' does not correspond to any literal in the enumeration 'PositionMethod'.";
     115             : }
     116             : 
     117           0 : string CPositionMethod::badInt(unsigned int i) {
     118           0 :         ostringstream oss ;
     119           0 :         oss << "'" << i << "' is out of range for the enumeration 'PositionMethod'.";
     120           0 :         return oss.str();
     121           0 : }
     122             : 
     123             : namespace PositionMethodMod {
     124           0 :         std::ostream & operator << ( std::ostream & out, const PositionMethod& value) {
     125           0 :                 out << CPositionMethod::name(value);
     126           0 :                 return out;
     127             :         }
     128             : 
     129           0 :         std::istream & operator >> ( std::istream & in , PositionMethod& value ) {
     130           0 :                 in.clear();
     131           0 :                 string s ; 
     132           0 :                 in >> s;
     133             :                 try {
     134           0 :                 value = CPositionMethod::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