Skip to content

Commit

Permalink
Re #9215 Fix bug and clear vectors
Browse files Browse the repository at this point in the history
  • Loading branch information
raquelalvarezbanos committed Mar 25, 2015
1 parent cc53d93 commit c472788
Showing 1 changed file with 6 additions and 1 deletion.
Expand Up @@ -221,13 +221,18 @@ void PlotAsymmetryByLogValue::exec() {
}

// Analyse loadedWs
doAnalysis (loadedWorkspace.at(runIndex), runIndex);
doAnalysis (loadedWs, runIndex);

progress.report();
PARALLEL_END_INTERUPT_REGION
}
PARALLEL_CHECK_INTERUPT_REGION

// Clear vectors
loadedWorkspace.clear();
loadedDeadTimeTable.clear();
loadedDetGroupingTable.clear();

// Create the 2D workspace for the output
int nplots = (m_green!= EMPTY_INT()) ? 4 : 1;
size_t npoints = ie - is + 1;
Expand Down

0 comments on commit c472788

Please sign in to comment.