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