From fd8ddad765b38b181f953916486b082f2a089bd4 Mon Sep 17 00:00:00 2001 From: Arturs Bekasovs Date: Thu, 13 Feb 2014 17:40:07 +0000 Subject: [PATCH] Refs #8985. Disable processGroups call for the MuonLoad. --- .../WorkflowAlgorithms/inc/MantidWorkflowAlgorithms/MuonLoad.h | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Code/Mantid/Framework/WorkflowAlgorithms/inc/MantidWorkflowAlgorithms/MuonLoad.h b/Code/Mantid/Framework/WorkflowAlgorithms/inc/MantidWorkflowAlgorithms/MuonLoad.h index 55b55206dd33..c42efdaba5ba 100644 --- a/Code/Mantid/Framework/WorkflowAlgorithms/inc/MantidWorkflowAlgorithms/MuonLoad.h +++ b/Code/Mantid/Framework/WorkflowAlgorithms/inc/MantidWorkflowAlgorithms/MuonLoad.h @@ -50,6 +50,9 @@ namespace WorkflowAlgorithms void init(); void exec(); + // We dont' want processGroups to be called + virtual bool checkGroups() { return false; } + /// Returns a workspace for the first period as specified using FirstPeriod property. MatrixWorkspace_sptr getFirstPeriodWS(WorkspaceGroup_sptr ws);