Skip to content
Snippets Groups Projects
Commit 373ad943 authored by moukaddam's avatar moukaddam
Browse files

changing name of for loop counter to avoid conflicts

parent 85d6c57e
No related branches found
No related tags found
No related merge requests found
......@@ -102,7 +102,7 @@ void EventGeneratorMultipleParticle::ReadConfiguration(NPL::InputParser parser){
double dEnergy, dAngle;
if(evtfile.is_open()){
cout << "Event file found: " << m_FileName << " \033[0m" << endl;
for(unsigned int i=0; i<m_Events; i++){
for(unsigned int j=0; j<m_Events; j++){
//while(!evtfile.eof()){
evtfile >> sMult >> iMult;
m_Multiplicity.push_back(iMult);
......
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