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.
26 lines
433 B
26 lines
433 B
4 years ago
|
#ifndef SYSTEMPARAMETERS_H
|
||
|
#define SYSTEMPARAMETERS_H
|
||
|
|
||
|
#include <QObject>
|
||
|
|
||
|
struct ScenGenSystemParameters_t {
|
||
|
float dtgcMaxWeight;
|
||
|
QList<float> blendShotWeight;
|
||
|
float delayCalcDt;
|
||
|
float lineDt;
|
||
|
float fpgaTxDt;
|
||
|
quint32 apodization;
|
||
|
float startDepth;
|
||
|
quint32 maxBPulseNumber;
|
||
|
quint32 maxRxFocusPointNumber;
|
||
|
quint32 channelNumber;
|
||
|
quint8 mla;
|
||
|
quint32 stb;
|
||
|
|
||
|
ScenGenSystemParameters_t()
|
||
|
{
|
||
|
}
|
||
|
};
|
||
|
|
||
|
#endif //SYSTEMPARAMETERS_H
|