Skip to content

Commit

Permalink
Correct systemtests for changes in algorithms
Browse files Browse the repository at this point in the history
Refs #11437
  • Loading branch information
DanNixon committed Mar 30, 2015
1 parent 29daecf commit 5c5952e
Showing 1 changed file with 17 additions and 17 deletions.
Expand Up @@ -849,7 +849,7 @@ class ISISIndirectInelasticFuryAndFuryFit(ISISIndirectInelasticBase):
'''
A base class for the ISIS indirect inelastic Fury/FuryFit tests
The output of Fury is usually used with FuryFit and so we plug one into
The output of TransformToIqt is usually used with FuryFit and so we plug one into
the other in this test.
'''

Expand All @@ -865,14 +865,14 @@ def _run(self):
LoadNexus(sample, OutputWorkspace=sample)
LoadNexus(self.resolution, OutputWorkspace=self.resolution)

fury_props, fury_ws = TransformToIqt(Sample=self.samples[0],
Resolution=self.resolution,
EnergyMin=self.e_min,
EnergyMax=self.e_max,
NumBins=self.num_bins,
DryRun=False,
Save=False,
Plot=False)
fury_props, fury_ws = TransformToIqt(SampleWorkspace=self.samples[0],
ResolutionWorkspace=self.resolution,
EnergyMin=self.e_min,
EnergyMax=self.e_max,
BinReductionFactor=self.num_bins,
DryRun=False,
Save=False,
Plot=False)

# Test FuryFit Sequential
furyfitSeq_ws = furyfitSeq(fury_ws.getName(),
Expand Down Expand Up @@ -986,14 +986,14 @@ def _run(self):
LoadNexus(sample, OutputWorkspace=sample)
LoadNexus(self.resolution, OutputWorkspace=self.resolution)

fury_props, fury_ws = Fury(Sample=self.samples[0],
Resolution=self.resolution,
EnergyMin=self.e_min,
EnergyMax=self.e_max,
NumBins=self.num_bins,
DryRun=False,
Save=False,
Plot=False)
fury_props, fury_ws = TransformToIqt(SampleWorkspace=self.samples[0],
ResolutionWorkspace=self.resolution,
EnergyMin=self.e_min,
EnergyMax=self.e_max,
BinReductionFactor=self.num_bins,
DryRun=False,
Save=False,
Plot=False)

# Test FuryFit Sequential
furyfitSeq_ws = furyfitMult(fury_ws.getName(),
Expand Down

0 comments on commit 5c5952e

Please sign in to comment.