Files
Jungfraujoch/common/UnitCell.h

16 lines
259 B
C

// Copyright (2019-2023) Paul Scherrer Institute
#ifndef JUNGFRAUJOCH_UNITCELL_H
#define JUNGFRAUJOCH_UNITCELL_H
struct UnitCell {
float a;
float b;
float c;
float alpha;
float beta;
float gamma;
};
#endif //JUNGFRAUJOCH_UNITCELL_H