Changeset 11712 for trunk/FACT++/src/Converter.cc
- Timestamp:
- 07/30/11 16:04:05 (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/FACT++/src/Converter.cc
r11702 r11712 1014 1014 } 1015 1015 1016 vector<string> Converter::GetFitsFormat() const 1017 { 1018 //we've got a nice structure describing the format of this service's messages. 1019 //Let's create the appropriate FITS columns 1020 vector<string> vec; 1021 for (FormatList::const_iterator it=fList.begin(); it!=fList.end(); it++) 1022 { 1023 ostringstream dataQualifier; 1024 dataQualifier << it->second.first; 1025 1026 switch (it->first.first->name()[0]) 1027 { 1028 case 'c': dataQualifier << 'B'; break; 1029 case 's': dataQualifier << 'I'; break; 1030 case 'i': dataQualifier << 'J'; break; 1031 case 'l': dataQualifier << 'J'; break; 1032 case 'f': dataQualifier << 'E'; break; 1033 case 'd': dataQualifier << 'D'; break; 1034 case 'x': dataQualifier << 'K'; break; 1035 case 'v': 1036 case 'S': //we skip the variable length strings 1037 continue; 1038 1039 default: 1040 throw runtime_error("GetFitsFormat - unknown FITS format."); 1041 }; 1042 1043 vec.push_back(dataQualifier.str()); 1044 } 1045 1046 return vec; 1047 } 1016 1048 1017 1049 void Converter::Print(std::ostream &out) const
Note:
See TracChangeset
for help on using the changeset viewer.