Commits
Vincent Geers authored 7600bb45dde
43 43 | |
44 44 | class ObservingRun(object): |
45 45 | """ |
46 46 | ObservingRun is a logical representation of an observing run. |
47 47 | |
48 48 | Attributes: |
49 49 | measurement_sets: List of measurementSet objects associated with run. |
50 50 | ms_datatable_name: Path to directory that stores DataTable of each |
51 51 | MeasurementSet (Single-Dish only). |
52 52 | ms_reduction_group: Dictionary of reduction groups (Single-Dish only). |
53 - | org_directions: Dictionary with Direction objects of the origin (ALMA |
54 - | Single-Dish only). |
53 + | org_directions: Dictionary with Direction objects of the origin |
54 + | (Single-Dish only). |
55 55 | virtual_science_spw_ids: Dictionary mapping each virtual science |
56 56 | spectral window ID (key) to corresponding science spectral window |
57 57 | name (value) that is shared across all measurement sets in the |
58 58 | observing run. |
59 59 | virtual_science_spw_names: Dictionary mapping each science spectral |
60 60 | window name (key) to corresponding virtual spectral window ID (value). |
61 61 | virtual_science_spw_shortnames: Dictionary mapping each science spectral |
62 62 | window name (key) to a shortened version of the name (value). |
63 63 | """ |
64 64 | def __init__(self) -> None: |