DP3
Stokes.h
Go to the documentation of this file.
1 // Stokes.h: Complex Stokes vector.
2 //
3 // Copyright (C) 2020 ASTRON (Netherlands Institute for Radio Astronomy)
4 // SPDX-License-Identifier: GPL-3.0-or-later
5 
6 #ifndef DPPP_STOKES_H
7 #define DPPP_STOKES_H
8 
9 namespace dp3 {
10 namespace base {
11 
13 
15 
16 class Stokes {
17  public:
18  Stokes();
19 
20  double I, Q, U, V;
21 };
22 
24 
25 } // namespace base
26 } // namespace dp3
27 
28 #endif
Complex Stokes vector.
Definition: Stokes.h:16
double Q
Definition: Stokes.h:20
double U
Definition: Stokes.h:20
double I
Definition: Stokes.h:20
double V
Definition: Stokes.h:20
This file has generic helper routines for testing steps.
Definition: AntennaConfig.h:53