Skip to content
Snippets Groups Projects
Commit b36a939f authored by Baptiste LENIAU's avatar Baptiste LENIAU
Browse files

Correct a fat finger (from a confident copy past) causing the MURE2CLASS Utils...

Correct a fat finger (from a confident copy past) causing the MURE2CLASS Utils writing only one nuclei when using a MURE output with one cell

git-svn-id: svn+ssh://svn.in2p3.fr/class@456 0e7d625b-0364-4367-a6be-d5be4a48d228
parent baec7b18
No related branches found
No related tags found
No related merge requests found
......@@ -282,6 +282,7 @@ int main(int argc, char** argv)
{
ZAI zai(NR.Z, NR.A, NR.I, NR.Proportion);
zai1.push_back(zai);
//cout<<zai.Z()<<" "<<zai.A()<<" "<<zai.I()<<" "<<zai.Prop()<<endl;
//if (t==0 && NR.Proportion>=2e+25) cout << NR.Z << " " << NR.A << " " << NR.I << " " << NR.Proportion << endl;
}
......@@ -617,8 +618,8 @@ int main(int argc, char** argv)
}
else
{
for(int i=0; i < zai3[0].size(); i++)
{
for(int i=0; i < zai3[0][0].size(); i++)
{
Output << "Inv " << zai3[0][0][i].Z() << " " << zai3[0][0][i].A() << " " << zai3[0][0][i].I() << " ";
for (int t=StepToSkip; t<vTime.size(); t++)
{
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment