@@ -206,14 +206,14 @@ def left_multiply_syst_quats(
206
206
class FocalplaneCoord :
207
207
"""This class create an instance of focal plane to add offset and disturbance to the detectors.
208
208
209
- Methods in this class multiply systematic quaternions to :attr:`.Observation.quat` (List [:class:`.RotQuaternion`]).
209
+ Methods in this class multiply systematic quaternions to :attr:`.Observation.quat` (list [:class:`.RotQuaternion`]).
210
210
211
211
Args:
212
212
sim (`Simulation`): :class:`.Simulation` instance.
213
213
214
214
obs (`Observation`): :class:`.Observation` instance whose :attr:`.Observation.quat` is injected with the systematics.
215
215
216
- detectors (`List [DetectorInfo]`): List of :class:`.DetectorInfo` instances.
216
+ detectors (`list [DetectorInfo]`): List of :class:`.DetectorInfo` instances.
217
217
"""
218
218
219
219
def __init__ (
@@ -228,7 +228,7 @@ def __init__(
228
228
def add_offset (self , offset_rad , axis : str ):
229
229
"""Add a rotational offset to the detectors in the focal plane by the specified axis.
230
230
231
- This method multiplies systematic quaternions to :attr:`.Observation.quat` (List [:class:`.RotQuaternion`]).
231
+ This method multiplies systematic quaternions to :attr:`.Observation.quat` (list [:class:`.RotQuaternion`]).
232
232
233
233
If the `offset_rad` is a scalar, it will be added to all the detectors in the focal plane.
234
234
If the `offset_rad` is an array with same length of the list of detectors,
@@ -276,7 +276,7 @@ def add_offset(self, offset_rad, axis: str):
276
276
def add_disturb (self , noise_rad_matrix : np .ndarray , axis : str ):
277
277
"""Add a rotational disturbance to the detectors in the focal plane by the specified axis.
278
278
279
- This method multiplies systematic quaternions to :attr:`.Observation.quat` (List [:class:`.RotQuaternion`]).
279
+ This method multiplies systematic quaternions to :attr:`.Observation.quat` (list [:class:`.RotQuaternion`]).
280
280
281
281
If the `noise_rad_matrix` has the shape [`N`, `t`] where `N` is the number of detectors,
282
282
`t` is the number of timestamps, the disturbance will be added to the detectors
@@ -339,7 +339,7 @@ class SpacecraftCoord:
339
339
340
340
obs (`Observation`): :class:`.Observation` instance whose :attr:`.Observation.quat` is injected with the systematics.
341
341
342
- detectors (`List [DetectorInfo]`): List of :class:`.DetectorInfo` instances.
342
+ detectors (`list [DetectorInfo]`): List of :class:`.DetectorInfo` instances.
343
343
"""
344
344
345
345
def __init__ (
@@ -398,7 +398,7 @@ class HWPCoord:
398
398
399
399
obs (`Observation`): :class:`.Observation` instance whose :attr:`.Observation.quat` is injected with the systematics.
400
400
401
- detectors (`List [DetectorInfo]`): List of :class:`.DetectorInfo` instances.
401
+ detectors (`list [DetectorInfo]`): List of :class:`.DetectorInfo` instances.
402
402
"""
403
403
404
404
def __init__ (
@@ -411,7 +411,7 @@ def __init__(
411
411
412
412
sampling_rate_hz (`float`): The sampling rate of the detectors.
413
413
414
- detectors (`List [DetectorInfo]`): List of :class:`.DetectorInfo` to which offset and disturbance are to be added.
414
+ detectors (`list [DetectorInfo]`): List of :class:`.DetectorInfo` to which offset and disturbance are to be added.
415
415
416
416
ang_speed_radpsec (`float`): The angular speed of the spinning HWP.
417
417
@@ -526,7 +526,7 @@ class PointingSys:
526
526
527
527
obs (`Observation`): :class:`.Observation` instance whose :attr:`.Observation.quat` is injected with the systematics.
528
528
529
- detectors (`List [Detector]`): List of :class:`.DetectorInfo`.
529
+ detectors (`list [Detector]`): List of :class:`.DetectorInfo`.
530
530
"""
531
531
532
532
def __init__ (
0 commit comments