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

avoid two compilation warnings

git-svn-id: svn+ssh://svn.in2p3.fr/class@768 0e7d625b-0364-4367-a6be-d5be4a48d228
parent f3fc2dee
No related branches found
No related tags found
No related merge requests found
...@@ -75,7 +75,7 @@ EQM_FBR_MLP_Keff_BOUND::EQM_FBR_MLP_Keff_BOUND(string TMVAWeightPath, int NumOf ...@@ -75,7 +75,7 @@ EQM_FBR_MLP_Keff_BOUND::EQM_FBR_MLP_Keff_BOUND(string TMVAWeightPath, int NumOf
INFO << "\tThe TMVA (weight | information) files are :" << endl; INFO << "\tThe TMVA (weight | information) files are :" << endl;
INFO << "\t" << "( " << fTMVAWeightPath << " | " << fInformationFile << " )" << endl; INFO << "\t" << "( " << fTMVAWeightPath << " | " << fInformationFile << " )" << endl;
INFO << "Time (s) :"<<endl; INFO << "Time (s) :"<<endl;
for(int i=0;i<fMLP_Time.size();i++) for(int i=0;i< (int) fMLP_Time.size();i++)
INFO<<fMLP_Time[i]<<endl; INFO<<fMLP_Time[i]<<endl;
INFO<<endl; INFO<<endl;
INFO<<"Z A I Name (input MLP) :"<<endl; INFO<<"Z A I Name (input MLP) :"<<endl;
...@@ -135,7 +135,7 @@ EQM_FBR_MLP_Keff_BOUND::EQM_FBR_MLP_Keff_BOUND(CLASSLogger* log, string TMVAWeig ...@@ -135,7 +135,7 @@ EQM_FBR_MLP_Keff_BOUND::EQM_FBR_MLP_Keff_BOUND(CLASSLogger* log, string TMVAWeig
INFO << "\tThe TMVA (weight | information) files are :" << endl; INFO << "\tThe TMVA (weight | information) files are :" << endl;
INFO << "\t" << "( " << fTMVAWeightPath << " | " << fInformationFile << " )" << endl; INFO << "\t" << "( " << fTMVAWeightPath << " | " << fInformationFile << " )" << endl;
INFO << "Time (s) :"<<endl; INFO << "Time (s) :"<<endl;
for(int i=0;i<fMLP_Time.size();i++) for(int i=0;i< (int) fMLP_Time.size();i++)
INFO<<fMLP_Time[i]<<endl; INFO<<fMLP_Time[i]<<endl;
INFO<<endl; INFO<<endl;
INFO<<"Z A I Name (input MLP) :"<<endl; INFO<<"Z A I Name (input MLP) :"<<endl;
......
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