同步修改

pull/13/head
chenzenghui 2025-03-21 16:00:31 +08:00
parent 8dc550fbec
commit 2b586efe03
2 changed files with 5 additions and 1 deletions

View File

@ -291,7 +291,7 @@ ErrorCode RFPCProcessCls::Process(long num_thread)
else {}
qDebug() << "RFPCMainProcess";
//return ErrorCode::SUCCESS;
stateCode = this->InitEchoMaskArray();
if (stateCode != ErrorCode::SUCCESS) {
return stateCode;
@ -303,6 +303,9 @@ ErrorCode RFPCProcessCls::Process(long num_thread)
// 初始化回波
this->EchoSimulationData->initEchoArr(std::complex<double>(0, 0));
//return ErrorCode::SUCCESS;
stateCode = this->RFPCMainProcess_GPU();
if (stateCode != ErrorCode::SUCCESS) {

View File

@ -278,6 +278,7 @@ double AbstractSARSatelliteModel::getCenterLookAngle()
void AbstractSARSatelliteModel::setCenterLookAngle(double angle)
{
}
void AbstractSARSatelliteModel::setTransformRadiationPattern(std::shared_ptr<AbstractRadiationPattern> radiationPanttern)