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

correct a variable declaration avoiding to compile ... ouupss my bad

git-svn-id: svn+ssh://svn.in2p3.fr/class@653 0e7d625b-0364-4367-a6be-d5be4a48d228
parent 971b788a
No related branches found
No related tags found
No related merge requests found
...@@ -106,6 +106,7 @@ vector<double> EquivalenceModel::BuildFuel(double BurnUp, double HMMass,vector<I ...@@ -106,6 +106,7 @@ vector<double> EquivalenceModel::BuildFuel(double BurnUp, double HMMass,vector<I
{ {
DBGL DBGL
vector<double> lambda ; //vector of portion of stocks taken (fissile & fertil)
/***Test if there is a stock**/ /***Test if there is a stock**/
if( (int)FissilArray.size()==0 ) if( (int)FissilArray.size()==0 )
{ WARNING<<" No fissile stocks available ! Fuel not build"<<endl; { WARNING<<" No fissile stocks available ! Fuel not build"<<endl;
...@@ -120,7 +121,6 @@ DBGL ...@@ -120,7 +121,6 @@ DBGL
fTotalFertileMassInStocks = 0; fTotalFertileMassInStocks = 0;
fActualFissileContent = GetBuildFuelFirstGuess(); fActualFissileContent = GetBuildFuelFirstGuess();
vector<double> lambda ; //vector of portion of stocks taken (fissile & fertil)
for(int i = 0 ; i < (int)FissilArray.size() + (int)FertilArray.size() ; i++ ) for(int i = 0 ; i < (int)FissilArray.size() + (int)FertilArray.size() ; i++ )
lambda.push_back(0); lambda.push_back(0);
......
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