ARTS
2.2.66
|
Implementation of Tensors of Rank 4. More...
#include <matpackIV.h>
Public Member Functions | |
Iterator4D () | |
Default constructor. More... | |
Iterator4D (const Tensor3View &x, Index stride) | |
Explicit constructor. More... | |
Iterator4D & | operator++ () |
Prefix increment operator. More... | |
bool | operator!= (const Iterator4D &other) const |
Not equal operator, needed for algorithms like copy. More... | |
Tensor3View * | operator-> () |
The -> operator is needed, so that we can write i->begin() to get the 3D iterators. More... | |
Tensor3View & | operator* () |
Dereferencing. More... | |
Private Attributes | |
Tensor3View | msv |
Current position. More... | |
Index | mstride |
Stride. More... | |
Implementation of Tensors of Rank 4.
Based on Tensor3 by Stefan Buehler.
The four dimensions are called: book, page, row, column.
Definition at line 38 of file matpackIV.h.
|
inline |
Default constructor.
Definition at line 42 of file matpackIV.h.
|
inline |
Explicit constructor.
Definition at line 45 of file matpackIV.h.
|
inline |
Not equal operator, needed for algorithms like copy.
Definition at line 54 of file matpackIV.h.
References ConstTensor3View::mcr, ConstTensor3View::mdata, ConstTensor3View::mpr, ConstTensor3View::mrr, Range::mstart, msv, operator*(), and operator->().
Tensor3View & Iterator4D::operator* | ( | ) |
Dereferencing.
Definition at line 39 of file matpackIV.cc.
References msv.
Referenced by operator!=(), and ConstIterator4D::operator!=().
|
inline |
Prefix increment operator.
Definition at line 51 of file matpackIV.h.
References ConstTensor3View::mdata, mstride, and msv.
Tensor3View * Iterator4D::operator-> | ( | ) |
The -> operator is needed, so that we can write i->begin() to get the 3D iterators.
Definition at line 33 of file matpackIV.cc.
References msv.
Referenced by operator!=(), and ConstIterator4D::operator!=().
|
private |
Stride.
Definition at line 76 of file matpackIV.h.
Referenced by operator++(), and ConstIterator4D::operator++().
|
private |
Current position.
Definition at line 74 of file matpackIV.h.
Referenced by operator!=(), ConstIterator4D::operator!=(), operator*(), ConstIterator4D::operator*(), operator++(), ConstIterator4D::operator++(), operator->(), and ConstIterator4D::operator->().