This commit is contained in:
caes 2017-06-22 22:08:30 -04:00
parent ede7c02290
commit 2f88332fea

View File

@ -255,8 +255,6 @@ agn::cloudy_grid agn::read_cloudy_grid(std::ifstream& inputfile) {
std::string headerword=""; std::string headerword="";
headerstr.clear(); headerstr.clear();
headerstr.seekg(0); headerstr.seekg(0);
if(agn::debug) std::cout
<< " Grabbing iterations.";
int iterations; int iterations;
while(!headerstr.eof()) { while(!headerstr.eof()) {
headerstr >> headerword; headerstr >> headerword;
@ -265,11 +263,11 @@ agn::cloudy_grid agn::read_cloudy_grid(std::ifstream& inputfile) {
break; break;
} }
} }
if(agn::debug) std::cout
<< " Found " << iterations << "iterations.";
point.iterations = iterations; point.iterations = iterations;
headerstr.clear(); headerstr.clear();
headerstr.seekg(0); headerstr.seekg(0);
if(agn::debug) std::cout
<< " Grabbing colden.";
double colden; double colden;
while(!headerstr.eof()) { while(!headerstr.eof()) {
headerstr >> headerword; headerstr >> headerword;
@ -281,6 +279,8 @@ agn::cloudy_grid agn::read_cloudy_grid(std::ifstream& inputfile) {
} }
} }
} }
if(agn::debug) std::cout
<< " Found 10^"<<colden<<" colden.";
point.colden = colden; point.colden = colden;
if(agn::debug) std::cout if(agn::debug) std::cout
<< " Grabbing emission lines."; << " Grabbing emission lines.";