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