Skip to content
Snippets Groups Projects
Commit 53ca29f0 authored by Colm Talbot's avatar Colm Talbot
Browse files

fix detector tensor

parent c1925fe2
No related branches found
No related tags found
No related merge requests found
Pipeline #
......@@ -292,9 +292,9 @@ class Interferometer(object):
n - unit vector along arm in cartesian Earth-based coordinates
"""
if arm == 'x':
return self.__calculate_arm(self.xarm_tilt, self.xarm_azimuth)
return self.__calculate_arm(self.__xarm_tilt, self.__xarm_azimuth)
elif arm == 'y':
return self.__calculate_arm(self.yarm_tilt, self.yarm_azimuth)
return self.__calculate_arm(self.__yarm_tilt, self.__yarm_azimuth)
else:
logging.warning('Not a recognized arm, aborting!')
return
......
......@@ -10,6 +10,6 @@ latitude = 46 + 27. / 60 + 18.528 / 3600
longitude = -(119 + 24. / 60 + 27.5657 / 3600)
elevation = 142.554
xarm_azimuth = 125.9994
yarm_azimuth = 215.994
yarm_azimuth = 215.9994
xarm_tilt = -6.195e-4
yarm_tilt = 1.25e-5
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