DP3
Baseline.h
Go to the documentation of this file.
1 // Baseline.h: Pair of stations that together form a baseline (interferometer).
2 //
3 // Copyright (C) 2020 ASTRON (Netherlands Institute for Radio Astronomy)
4 // SPDX-License-Identifier: GPL-3.0-or-later
5 
8 
9 #ifndef DPPP_BASELINE_H
10 #define DPPP_BASELINE_H
11 
12 #include <cstddef>
13 #include <utility>
14 
15 namespace dp3 {
16 namespace base {
17 
18 typedef std::pair<size_t, size_t> Baseline;
19 
20 } // namespace base
21 } // namespace dp3
22 
23 #endif
std::pair< size_t, size_t > Baseline
Definition: Baseline.h:18
This file has generic helper routines for testing steps.
Definition: AntennaConfig.h:53