casacore
|
#include <AxesSpecifier.h>
Public Member Functions | |
AxesSpecifier () | |
The default constructor keeps all axes. More... | |
AxesSpecifier (bool keepDegenerate) | |
Tell if no or all degenerate axes have to be removed. More... | |
AxesSpecifier (bool keepDegenerate, const IPosition &axisPath) | |
Tell if no or all degenerate axes have to be removed. More... | |
AxesSpecifier (const IPosition &keepAxes) | |
Tell which (degenerate) axes have to be kept. More... | |
AxesSpecifier (const IPosition &keepAxes, const IPosition &axisPath) | |
The argument keepAxes tells which degenerate axes have to be kept. More... | |
AxesMapping | apply (const IPosition &shape) const |
Apply the specification to a shape. More... | |
bool | keep () const |
Are we keeping all degenerate axes ? More... | |
Private Attributes | |
IPosition | itsAxes |
IPosition | itsPath |
bool | itsKeep |
Specification of axes to keep or remove
Public interface
AxesSpecifier makes it possible to specify which axes should be used in a shape. Degenerate axes (i.e. axes with length 0) can be thrown away which makes it possible to reduce the dimensionality of an array. All degenerate axes can be thrown away, but one can also specify which ones should be kept.
Another option of this class is to reorder the axes, thus to make the axes of a lattice appear in a different order. This can be useful when two images with diferent axes orders have to be combined.
When an AxesSpecifier has to be used for a lattice, the lattice's shape has to be applied to the AxesSpecifier. The result is a AxesMapping object. This object is (for example) used internally in the casacore SubLattice class to know how to map the axes form the original lattice to the sublattice.
Caution: Reordering axes is not supported (yet) by the other Casacore classes like Lattices and Images;
This example tells that all degenerate axes have to be kept. The axes are reordered to 1,0,2. Thus the first and second axes are swapped.
The same example as above, but now degenerated axes are removed. Note that because the second axis is removed, the third axis now get the second axis, thus gets swapped with the first axis.
Also note the difference between the functions posToOld
and shapeToOld
.
Definition at line 110 of file AxesSpecifier.h.
casacore::AxesSpecifier::AxesSpecifier | ( | ) |
The default constructor keeps all axes.
|
explicit |
Tell if no or all degenerate axes have to be removed.
|
explicit |
Tell if no or all degenerate axes have to be removed.
The argument axisPath
makes it possible to specify in which order the KEPT axes have to be used. Unspecified axes are appended to the end. It gives a means to reorder the axes of a lattice.
E.g. for a 4-dim lattice axisPath [2,0] means axis order [2,0,1,3].
|
explicit |
Tell which (degenerate) axes have to be kept.
Non-degenerate axes will always be kept.
The argument keepAxes
tells which degenerate axes have to be kept.
Non-degenerate axes will always be kept.
The argument axisPath
makes it possible to specify in which order the KEPT axes have to be used. Unspecified axes are appended to the end. It gives a means to reorder the axes of a lattice.
E.g. for a 4-dim lattice axisPath [2,0] means axis order [2,0,1,3].
AxesMapping casacore::AxesSpecifier::apply | ( | const IPosition & | shape | ) | const |
Apply the specification to a shape.
It returns an AxesMapping object which takes care of mapping old to new axes order.
|
inline |
Are we keeping all degenerate axes ?
Definition at line 144 of file AxesSpecifier.h.
References itsKeep.
|
private |
Definition at line 147 of file AxesSpecifier.h.
|
private |
Definition at line 149 of file AxesSpecifier.h.
Referenced by keep().
|
private |
Definition at line 148 of file AxesSpecifier.h.