"git@code.ornl.gov:mantidproject/mantid.git" did not exist on "deb61ddecd54ad05748337df9594e2829a736218"
Newer
Older
#pylint: disable=no-init,attribute-defined-outside-init
import stresstesting
from mantid.simpleapi import *
class CalMuonDeadTimeTest(stresstesting.MantidStressTest):
'''Tests the CalMuonDeadTime algorithm'''
def runTest(self):
Load(Filename='EMU30604.nxs',OutputWorkspace='EMU30604')
CalMuonDeadTime(InputWorkspace='EMU30604',
DeadTimeTable='deadTable',
FirstGoodData=0.5,
LastGoodData=10,
DataFitted='fitTable')
GroupWorkspaces(InputWorkspaces='deadTable,fitTable',
OutputWorkspace='EMUCalMuonDeadTime')
def validate(self):
return ('EMUCalMuonDeadTime','EMUCalMuonDeadTime.nxs')