DP3
ConstraintResult.h
Go to the documentation of this file.
1 // Copyright (C) 2020 ASTRON (Netherlands Institute for Radio Astronomy)
2 // SPDX-License-Identifier: GPL-3.0-or-later
3 
4 #ifndef DP3_DDECAL_CONSTRAINT_RESULT_H_
5 #define DP3_DDECAL_CONSTRAINT_RESULT_H_
6 
7 #include <string>
8 #include <vector>
9 
10 namespace dp3::ddecal {
11 
20  std::vector<double> vals;
21  std::vector<double> weights;
23  std::string axes;
24  std::vector<size_t> dims;
25  std::string name;
26 };
27 
28 } // namespace dp3::ddecal
29 
30 #endif
Definition: AmplitudeOnlyConstraint.h:12
Definition: ConstraintResult.h:18
std::vector< double > weights
Definition: ConstraintResult.h:21
std::vector< double > vals
Both vals and weights have the dimensions described in dims and axes.
Definition: ConstraintResult.h:20
std::string axes
Comma-separated string with axis names, fastest varying last.
Definition: ConstraintResult.h:23
std::vector< size_t > dims
Definition: ConstraintResult.h:24
std::string name
Definition: ConstraintResult.h:25