Skip to content
Snippets Groups Projects
Commit faee6fe6 authored by Gagik Vardanyan's avatar Gagik Vardanyan
Browse files

Re #23415 parallax correction for D22

parent 595aa1e8
No related branches found
No related tags found
No related merge requests found
...@@ -246,6 +246,20 @@ class SANSILLReduction(PythonAlgorithm): ...@@ -246,6 +246,20 @@ class SANSILLReduction(PythonAlgorithm):
def _check_processed_flag(ws, value): def _check_processed_flag(ws, value):
return ws.getRun().getLogData('ProcessedAs').value == value return ws.getRun().getLogData('ProcessedAs').value == value
@staticmethod
def _parallax_correction(ws):
formula = ws.getInstrument().getStringParameter('parallax')[0]
import numpy as np
l2 = ws.getRun().getLogData('L2').value
n_spectra = ws.getNumberHistograms()
p = np.empty(n_spectra)
for i in range(n_spectra):
d = ws.getDetector(i).getPos()
p[i] = np.arctan(d[0]/l2)
parallax_ws = ws.getName() + '_parallax'
parallax_ws = CreateWorkspace(NSpec=n_spectra, DataY=eval(formula), DataX=ws.extractX(), ParentWorkspace=ws, StoreInADS=False)
Divide(LHSWorkspace=ws, RHSWorkspace=parallax_ws, OutputWorkspace=ws.getName())
def PyExec(self): # noqa: C901 def PyExec(self): # noqa: C901
process = self.getPropertyValue('ProcessAs') process = self.getPropertyValue('ProcessAs')
...@@ -311,6 +325,11 @@ class SANSILLReduction(PythonAlgorithm): ...@@ -311,6 +325,11 @@ class SANSILLReduction(PythonAlgorithm):
DeleteWorkspace(masked_ws) DeleteWorkspace(masked_ws)
thickness = self.getProperty('SampleThickness').value thickness = self.getProperty('SampleThickness').value
NormaliseByThickness(InputWorkspace=ws, OutputWorkspace=ws, SampleThickness=thickness) NormaliseByThickness(InputWorkspace=ws, OutputWorkspace=ws, SampleThickness=thickness)
# parallax (gondola) effect
if mtd[ws].getInstrument().hasParameter('parallax'):
# for the moment it's only D22 that has this
self.log().information('Performing parallax correction')
self._parallax_correction(mtd[ws])
if process == 'Reference': if process == 'Reference':
sensitivity_out = self.getPropertyValue('SensitivityOutputWorkspace') sensitivity_out = self.getPropertyValue('SensitivityOutputWorkspace')
if sensitivity_out: if sensitivity_out:
......
<?xml version="1.0" encoding="UTF-8"?>
<parameter-file instrument = "D22" valid-from="2017-10-01 23:59:59">
<component-link name="D22">
<!-- This is the formula to model the theta dependency of the
detector sensitivities because of varying path lengths in the
detector volume. This is evaluated with python eval.
Note that the np stands for the numpy, p must be the parallax:
p = arctan(x/l2) [in radians], where x is the coordinate of the
detector pixel, l2 is the sample to detector distance. -->
<parameter name="parallax" type="string">
<value val="1+0.14*np.exp(-4*np.log(2.)*((np.abs(p)-0.588)/0.414)**2)"/>
</parameter>
</component-link>
</parameter-file>
<?xml version="1.0" encoding="UTF-8"?>
<parameter-file instrument = "D22lr" valid-from="2017-10-01 23:59:59">
<component-link name="D22lr">
<!-- This is the formula to model the theta dependency of the
detector sensitivities because of varying path lengths in the
detector volume. This is evaluated with python eval.
Note that the np stands for the numpy, p must be the parallax:
p = arctan(x/l2) [in radians], where x is the coordinate of the
detector pixel, l2 is the sample to detector distance. -->
<parameter name="parallax" type="string">
<value val="1+0.14*np.exp(-4*np.log(2.)*((np.abs(p)-0.588)/0.414)**2)"/>
</parameter>
</component-link>
</parameter-file>
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment