Draft abstract t-matrix type

Former-commit-id: dd4e9f9ed7f50b5f6db3416d478c8b37a9d4e5b4
This commit is contained in:
Marek Nečada 2019-07-23 17:21:56 +03:00
parent 0ffee1a073
commit 859a3a11a8
1 changed files with 8 additions and 1 deletions

View File

@ -389,7 +389,14 @@ typedef struct qpms_pointgroup_t {
* and in which direction \a orientation goes.
*/
qpms_irot3_t orientation;
} qpms_pgs_t;
} qpms_pointgroup_t;
/// An abstract T-matrix without actual elements, but with info about particle symmetry.
typedef struct qpms_abstract_tmatrix_t {
const qpms_vswf_set_spec_t *spec;
qpms_pointgroup_t sym;
} qpms_abstract_tmatrix_t;