Changeset 19174
- Timestamp:
- 08/18/18 17:41:12 (6 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/FACT++/src/fitsdump.cc
r18977 r19174 137 137 cout << " [" << GetNumRows() << "]\n"; 138 138 139 for ( const auto &it : fColMap)140 { 141 cout << " " << setw(3) << it .second.id;142 cout << "|" << setw(10) << ValueTypeToStr(it .second.type);143 cout << " " << it .first << "[" << it.second.num << "]";144 cout << " / " << it .second.comment;145 cout << " (" << it .second.unit << ")" << endl;139 for (auto it=fColMap.cbegin(); it!=fColMap.cend(); it++) 140 { 141 cout << " " << setw(3) << it->second.id; 142 cout << "|" << setw(10) << ValueTypeToStr(it->second.type); 143 cout << " " << it->first << "[" << it->second.num << "]"; 144 cout << " / " << it->second.comment; 145 cout << " (" << it->second.unit << ")" << endl; 146 146 } 147 147
Note:
See TracChangeset
for help on using the changeset viewer.