Skip to content

Commit

Permalink
Revert "Re #7489. Add back mutex per Pete's instructions."
Browse files Browse the repository at this point in the history
Take the mutex out again pending fixing the real problem in #7524.
This reverts commit aac45c4.
  • Loading branch information
RussellTaylor committed Jul 25, 2013
1 parent aac45c4 commit f587164
Showing 1 changed file with 0 additions and 3 deletions.
3 changes: 0 additions & 3 deletions Code/Mantid/Framework/DataHandling/src/LoadEventNexus.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -284,7 +284,6 @@ class ProcessBankData : public Task
double tof = static_cast<double>( event_time_of_flight[i] );
if ((tof >= alg->filter_tof_min) && (tof <= alg->filter_tof_max))
{
alg->m_eventVectorMutex.lock();
// Handle simulated data if present
if (have_weight)
{
Expand Down Expand Up @@ -330,8 +329,6 @@ class ProcessBankData : public Task

// Track all the touched wi (only necessary when compressing events, for thread safety)
if (compress) usedDetIds[detId-m_min_id] = true;

alg->m_eventVectorMutex.unlock();
} // valid time-of-flight

} // valid detector IDs
Expand Down

0 comments on commit f587164

Please sign in to comment.