Skip to content
Snippets Groups Projects
Commit 093f9e81 authored by Niclas Esser's avatar Niclas Esser
Browse files

Allow PolarizationDimension to b repeatable -> used by edd_paf::correlator::TFBPP_Visibilities~

parent b1f27632
No related branches found
No related tags found
No related merge requests found
......@@ -156,6 +156,7 @@ struct DimensionParser<AntennaDimension, KeyFormatter>
}
};
template <typename KeyFormatter>
struct DimensionParser<PolarisationDimension, KeyFormatter>
{
......@@ -173,6 +174,13 @@ struct DimensionParser<PolarisationDimension, KeyFormatter>
}
};
template <int N>
struct DimensionParser<PolarisationDimensionN<N>>
: public DimensionParser<PolarisationDimension, SuffixKeyFormatter<N>>
{};
template <typename KeyFormatter>
struct DimensionParser<DispersionDimension, KeyFormatter>
{
......
......@@ -913,6 +913,7 @@ class BasePolarisationDimension: public BaseDimension
*
*/
using PolarisationDimension = BasePolarisationDimension;
CREATE_REPEATABLE_DIMENSION(PolarisationDimension);
/**
* @brief A base class for wrapping dedispersered data.
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment