@@ -18,14 +18,13 @@ The signature of the `CFSimpleIterator` constructor is the following
constaxis_desc_t&time,
constaxis_desc_t&w_plane,
constaxis_desc_t&frequency,
constaxis_desc_t&mcol,
constaxis_desc_t&mrow);
constaxis_desc_t&mueller);
```
The arguments of the constructor correspond (largely) to dimensions in the space of `CFStore2 x CFBuffer`. Each of the arguments is a value of type `CFSimpleIndexer::axis_desc_t`, which combines the size of the axis and a flag to indicate whether the convolution function support sizes may be variable along that axis. Note that each axis is assumed to be densely occupied, and any conversion of an index on these axes to or from an index in `CFStore2 x CFBuffer` is unspecified. The "variable-size CF" flag **must** be set if the support size of the convolution functions is not constant as the index on that axis changes while the remaining indexes stay fixed.
The index type that is related to `hpg::CFArray` is `CFSimpleIndexer::cf_index_t`, which comprises three elements that correspond to the `mrow`,`cube` and `group` arguments of the `CFArray` indexing operator. The `CFSimpleIndexer` method that converts from a CASA-like index to a `CFArray` index is then
The index type that is related to `hpg::CFArray` is `CFSimpleIndexer::cf_index_t`, which comprises three elements that correspond to the `mueller``cube` and `group` arguments of the `CFArray` indexing operator. The `CFSimpleIndexer` method that converts from a CASA-like index to a `CFArray` index is then
```c++
// array elements: (mrow, cube, grp)
// array elements: (mueller, cube, grp)
usingcf_index_t=std::array<unsigned,3>;
cf_index_t
...
...
@@ -38,7 +37,7 @@ Comparing the `cf_index_t` value to the definition of the `CFArray` element acce