本文整理匯總了Python中mantid.simpleapi.Load.getDetector方法的典型用法代碼示例。如果您正苦於以下問題:Python Load.getDetector方法的具體用法?Python Load.getDetector怎麽用?Python Load.getDetector使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類mantid.simpleapi.Load
的用法示例。
在下文中一共展示了Load.getDetector方法的1個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Python代碼示例。
示例1: do_reduction
# 需要導入模塊: from mantid.simpleapi import Load [as 別名]
# 或者: from mantid.simpleapi.Load import getDetector [as 別名]
def do_reduction(calibration):
# load data
data = Load("HRP39180.RAW")
# copy parameters from calibration to data
CopyInstrumentParameters(calibration, data)
# Now move component on data workspace using a relative move, where that component was a detector in the calibrated workspace
MoveInstrumentComponent(data, DetectorID=1100,X=0.0,Y=0.0,Z=5.0,RelativePosition=True)
return data.getDetector(0).getPos()