mirror of
https://asciireactor.com/otho/cloudy-agn.git
synced 2025-04-05 05:15:44 +00:00
update
This commit is contained in:
parent
ede7c02290
commit
2f88332fea
@ -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.";
|
||||||
|
Loading…
Reference in New Issue
Block a user