geopro/src/app/panels/chart/ErtInversionStrategy.hpp

10 lines
465 B
C++
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

#pragma once
#include "IDatasetChartStrategy.hpp" // geopro::controllergeopro_controller PUBLIC include
namespace geopro::app {
// ERT 反演策略:散点(chart) + 网格等值面(grid) 两阶段。
struct ErtInversionStrategy : controller::IDatasetChartStrategy {
std::string ddCode() const override { return "dd_inversion_data"; }
bool hasGridPhase() const override { return true; } // 反演有网格数据阶段
};
} // namespace geopro::app