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 CCalibrationMode.cpp 34 : */ 35 : #include <sstream> 36 : #include <alma/Enumerations/CCalibrationMode.h> 37 : #include <string> 38 : using namespace std; 39 : 40 0 : int CCalibrationMode::version() { 41 0 : return CalibrationModeMod::version; 42 : } 43 : 44 0 : string CCalibrationMode::revision () { 45 0 : return CalibrationModeMod::revision; 46 : } 47 : 48 0 : unsigned int CCalibrationMode::size() { 49 0 : return 5; 50 : } 51 : 52 : 53 : const std::string& CCalibrationMode::sHOLOGRAPHY = "HOLOGRAPHY"; 54 : 55 : const std::string& CCalibrationMode::sINTERFEROMETRY = "INTERFEROMETRY"; 56 : 57 : const std::string& CCalibrationMode::sOPTICAL = "OPTICAL"; 58 : 59 : const std::string& CCalibrationMode::sRADIOMETRY = "RADIOMETRY"; 60 : 61 : const std::string& CCalibrationMode::sWVR = "WVR"; 62 : 63 0 : const std::vector<std::string> CCalibrationMode::names() { 64 0 : std::vector<std::string> enumSet; 65 : 66 0 : enumSet.insert(enumSet.end(), CCalibrationMode::sHOLOGRAPHY); 67 : 68 0 : enumSet.insert(enumSet.end(), CCalibrationMode::sINTERFEROMETRY); 69 : 70 0 : enumSet.insert(enumSet.end(), CCalibrationMode::sOPTICAL); 71 : 72 0 : enumSet.insert(enumSet.end(), CCalibrationMode::sRADIOMETRY); 73 : 74 0 : enumSet.insert(enumSet.end(), CCalibrationMode::sWVR); 75 : 76 0 : return enumSet; 77 0 : } 78 : 79 0 : std::string CCalibrationMode::name(const CalibrationModeMod::CalibrationMode& f) { 80 0 : switch (f) { 81 : 82 0 : case CalibrationModeMod::HOLOGRAPHY: 83 0 : return CCalibrationMode::sHOLOGRAPHY; 84 : 85 0 : case CalibrationModeMod::INTERFEROMETRY: 86 0 : return CCalibrationMode::sINTERFEROMETRY; 87 : 88 0 : case CalibrationModeMod::OPTICAL: 89 0 : return CCalibrationMode::sOPTICAL; 90 : 91 0 : case CalibrationModeMod::RADIOMETRY: 92 0 : return CCalibrationMode::sRADIOMETRY; 93 : 94 0 : case CalibrationModeMod::WVR: 95 0 : return CCalibrationMode::sWVR; 96 : 97 : } 98 : // Impossible siutation but....who knows with C++ enums 99 0 : throw badInt((int) f); 100 : } 101 : 102 0 : CalibrationModeMod::CalibrationMode CCalibrationMode::newCalibrationMode(const std::string& name) { 103 : 104 0 : if (name == CCalibrationMode::sHOLOGRAPHY) { 105 0 : return CalibrationModeMod::HOLOGRAPHY; 106 : } 107 : 108 0 : if (name == CCalibrationMode::sINTERFEROMETRY) { 109 0 : return CalibrationModeMod::INTERFEROMETRY; 110 : } 111 : 112 0 : if (name == CCalibrationMode::sOPTICAL) { 113 0 : return CalibrationModeMod::OPTICAL; 114 : } 115 : 116 0 : if (name == CCalibrationMode::sRADIOMETRY) { 117 0 : return CalibrationModeMod::RADIOMETRY; 118 : } 119 : 120 0 : if (name == CCalibrationMode::sWVR) { 121 0 : return CalibrationModeMod::WVR; 122 : } 123 : 124 0 : throw badString(name); 125 : } 126 : 127 0 : CalibrationModeMod::CalibrationMode CCalibrationMode::literal(const std::string& name) { 128 : 129 0 : if (name == CCalibrationMode::sHOLOGRAPHY) { 130 0 : return CalibrationModeMod::HOLOGRAPHY; 131 : } 132 : 133 0 : if (name == CCalibrationMode::sINTERFEROMETRY) { 134 0 : return CalibrationModeMod::INTERFEROMETRY; 135 : } 136 : 137 0 : if (name == CCalibrationMode::sOPTICAL) { 138 0 : return CalibrationModeMod::OPTICAL; 139 : } 140 : 141 0 : if (name == CCalibrationMode::sRADIOMETRY) { 142 0 : return CalibrationModeMod::RADIOMETRY; 143 : } 144 : 145 0 : if (name == CCalibrationMode::sWVR) { 146 0 : return CalibrationModeMod::WVR; 147 : } 148 : 149 0 : throw badString(name); 150 : } 151 : 152 0 : CalibrationModeMod::CalibrationMode CCalibrationMode::from_int(unsigned int i) { 153 0 : vector<string> names_ = names(); 154 0 : if (i >= names_.size()) throw badInt(i); 155 0 : return newCalibrationMode(names_.at(i)); 156 0 : } 157 : 158 0 : string CCalibrationMode::badString(const string& name) { 159 0 : return "'"+name+"' does not correspond to any literal in the enumeration 'CalibrationMode'."; 160 : } 161 : 162 0 : string CCalibrationMode::badInt(unsigned int i) { 163 0 : ostringstream oss ; 164 0 : oss << "'" << i << "' is out of range for the enumeration 'CalibrationMode'."; 165 0 : return oss.str(); 166 0 : } 167 : 168 : namespace CalibrationModeMod { 169 0 : std::ostream & operator << ( std::ostream & out, const CalibrationMode& value) { 170 0 : out << CCalibrationMode::name(value); 171 0 : return out; 172 : } 173 : 174 0 : std::istream & operator >> ( std::istream & in , CalibrationMode& value ) { 175 0 : in.clear(); 176 0 : string s ; 177 0 : in >> s; 178 : try { 179 0 : value = CCalibrationMode::literal(s); 180 : } 181 0 : catch (string & m) { 182 0 : in.setstate(ios::failbit); 183 0 : } 184 0 : return in; 185 0 : } 186 : } 187 :