fixed some formatting for spectral lines

This commit is contained in:
caes 2016-06-09 13:38:32 -04:00
parent a7cfccc71e
commit 83dcad1348
2 changed files with 2 additions and 2 deletions

View File

@ -17,7 +17,7 @@
namespace agn { namespace agn {
const bool debug = true; const bool debug = false;
// General constants // General constants
const double PI=3.14159265358979323846; const double PI=3.14159265358979323846;

View File

@ -198,7 +198,7 @@ agn::line_list agn::read_line_list(std::ifstream& inputfile) {
continue; continue;
} }
list.push_back(label); list.push_back(label);
list.push_back(std::string("Inwd ").append(applabel)); list.push_back(std::string("Inwd").append(applabel));
} }
return list; return list;
} }