You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
522 B
22 lines
522 B
#ifndef PROBESECONDPARAMETERS_H
|
|
#define PROBESECONDPARAMETERS_H
|
|
|
|
#include <QMetaType>
|
|
#include <QVector>
|
|
|
|
typedef struct ScenGenSecondaryProbeProperties_t
|
|
{
|
|
float pitchAzimuth;
|
|
float correctionZ;
|
|
QVector<float> elementAzimuth;
|
|
QVector<float> elementXPosition;
|
|
QVector<float> elementYPosition;
|
|
QVector<float> elementZPosition;
|
|
float vcMaxTheta;
|
|
float virtualOriginalZ;
|
|
float fieldOfView;
|
|
}ScenGenSecondaryProbeProperties_t;
|
|
|
|
Q_DECLARE_METATYPE(ScenGenSecondaryProbeProperties_t);
|
|
|
|
#endif //PROBESECONDPARAMETERS_H
|
|
|