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.
36 lines
740 B
36 lines
740 B
4 years ago
|
#ifndef SRAMTX_H
|
||
|
#define SRAMTX_H
|
||
|
|
||
|
#include <QObject>
|
||
|
|
||
|
struct SramTx_t {
|
||
|
QVector<float> txFocusXPos;
|
||
|
QVector<float> txFocusYPos;
|
||
|
QVector<float> txFocusZPos;
|
||
|
QVector<quint32> txStartActiveElementNumber;
|
||
|
QVector<quint32> txActiveElementNumber;
|
||
|
QVector<float> minDelay;
|
||
|
QVector<float> maxDelay;
|
||
|
QVector<quint32> maxDelayQ;
|
||
|
QVector<float> interceptXPos;
|
||
|
QVector<float> interceptYPos;
|
||
|
QVector<float> interceptZPos;
|
||
|
|
||
|
void clear()
|
||
|
{
|
||
|
txFocusXPos.clear();
|
||
|
txFocusYPos.clear();
|
||
|
txFocusZPos.clear();
|
||
|
txStartActiveElementNumber.clear();
|
||
|
txActiveElementNumber.clear();
|
||
|
minDelay.clear();
|
||
|
maxDelay.clear();
|
||
|
maxDelayQ.clear();
|
||
|
interceptXPos.clear();
|
||
|
interceptYPos.clear();
|
||
|
interceptZPos.clear();
|
||
|
}
|
||
|
};
|
||
|
|
||
|
#endif //SRAMTX_H
|