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.
19 lines
398 B
19 lines
398 B
#ifndef SCENGENDATABASE_H
|
|
#define SCENGENDATABASE_H
|
|
|
|
#include <QObject>
|
|
|
|
struct ScenGenDatabase_t {
|
|
QList<QList<float> > lineFilterLut;
|
|
QVector<int> apodization1;
|
|
QVector<int> apodization2;
|
|
QVector<int> apodization3;
|
|
QVector<int> apodization4;
|
|
QList<float> lpf;
|
|
QVector<float> atgcB;
|
|
QVector<float> atgcD;
|
|
QVector<float> atgcPw;
|
|
QVector<float> atgcReserve;
|
|
};
|
|
|
|
#endif //SCENGENDATABASE_H
|
|
|