Skip to content
Snippets Groups Projects
MuonKerenFittingTest.py 1.84 KiB
Newer Older
Tom Perkins's avatar
Tom Perkins committed
#pylint: disable=no-init,attribute-defined-outside-init,too-few-public-methods
import stresstesting
from mantid.simpleapi import *

Tom Perkins's avatar
Tom Perkins committed
class MuonKerenFittingTest(stresstesting.MantidStressTest):
    '''Tests the Keren fitting function on a real workspace, to check results vs. WiMDA'''

    def runTest(self):
        # Load dataset
Tom Perkins's avatar
Tom Perkins committed
        LoadMuonNexus(Filename='MUT00053591.nxs', DetectorGroupingTable='gp', OutputWorkspace='MUT53591')
WHITFIELDRE email's avatar
WHITFIELDRE email committed
        # Process like MuonAnalysis interface would
        MuonProcess(InputWorkspace='MUT53591', Mode='Combined', SummedPeriodSet='1',
                    ApplyDeadTimeCorrection=False, DetectorGroupingTable='gp', LoadedTimeZero=0, TimeZero=0,
                    Xmin=0.08, Xmax=10.0, OutputType="PairAsymmetry", PairFirstIndex="0", PairSecondIndex="1",
                    Alpha=1.0, OutputWorkspace='processed')
WHITFIELDRE email's avatar
WHITFIELDRE email committed
        # Fit the Keren function to the data
Tom Perkins's avatar
Tom Perkins committed
        func = "name=FlatBackground,A0=0.1;name=Keren,A=0.1,Delta=0.2,Field=18,Fluct=0.2"
        Fit(InputWorkspace='processed', Function=func, Output='out', CreateOutput=True)
WHITFIELDRE email's avatar
WHITFIELDRE email committed
        # Get fitted parameters
Tom Perkins's avatar
Tom Perkins committed
        params = mtd['out_Parameters']
        Background = params.cell(0,1)
        Initial = params.cell(1,1)
        Delta = params.cell(2,1)
        Field = params.cell(3,1)
        Fluct = params.cell(4,1)
        Chisq = params.cell(5,1)
WHITFIELDRE email's avatar
WHITFIELDRE email committed
        # Check that params are within the errors of those obtained in WiMDA
Tom Perkins's avatar
Tom Perkins committed
        self.assertTrue(Chisq < 1.1, "Fitted chi-square too large")
Tom Perkins's avatar
Tom Perkins committed
        self.assertDelta(Background, 0.1623, 0.0046, "Fitted A0 outside errors")
        self.assertDelta(Initial, 0.0389, 0.0040, "Fitted A outside errors")
        self.assertDelta(Delta, 0.96, 0.11, "Fitted Delta outside errors")
        self.assertDelta(Field, 20.0, 1.0, "Fitted Field outside errors")
        self.assertDelta(Fluct, 0.1, 0.01, "Fitted Fluct outside errors")