Skip to content
Snippets Groups Projects
Commit 14e41694 authored by Alex Buts's avatar Alex Buts
Browse files

refs #6447 Made better comments around (from) commented piece of code

in BoxController.cpp == operator. Comments are necessary to highlight the assumptions, made when defining the operator.
parent a1dda143
No related merge requests found
......@@ -67,13 +67,12 @@ namespace API
if(m_numMDGridBoxes[i]!=other.m_numMDGridBoxes[i])return false;
if(m_maxNumMDBoxes[i]!=other.m_maxNumMDBoxes[i])return false;
}
// Should we compare this?
/// number of events sitting in the boxes which should be split but are already split up to the max depth
//volatile size_t m_numEventsAtMax;
/// For adding events tasks
//size_t m_addingEvents_eventsPerTask;
/// For adding events tasks
//size_t m_addingEvents_numTasksPerBlock;
//There are number of variables which are
// 1) derived: not Should we compare this?
// umber of events sitting in the boxes which should be split but are already split up to the max depth: volatile size_t m_numEventsAtMax;
// 2) Dynamical and related to current processor and dynamical jobs allocation:
// For adding events tasks: size_t m_addingEvents_eventsPerTask; m_addingEvents_numTasksPerBlock;
// These variables are not compared but may need to be compared in a future for some purposes.
return true;
......
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