added white theme, some features to processing and saving
This commit is contained in:
@@ -94,10 +94,23 @@ struct S11PreprocessConfig {
|
||||
PreprocessAssetConfig reference{};
|
||||
};
|
||||
|
||||
struct PreprocessNotchBandConfig {
|
||||
float low_hz = 0.0F;
|
||||
float high_hz = 0.0F;
|
||||
};
|
||||
|
||||
struct PreprocessNotchConfig {
|
||||
bool enabled = false;
|
||||
std::vector<PreprocessNotchBandConfig> bands_hz{};
|
||||
float taper_width_hz = 40'000'000.0F;
|
||||
std::string taper_type = "cosine";
|
||||
};
|
||||
|
||||
struct PreprocessConfig {
|
||||
// Channel-specific preprocessing assets selected by Python GUI layer.
|
||||
S21PreprocessConfig s21{};
|
||||
S11PreprocessConfig s11{};
|
||||
PreprocessNotchConfig notch{};
|
||||
};
|
||||
|
||||
struct GprTxGeometry {
|
||||
|
||||
Reference in New Issue
Block a user