fix: SAR processing: don't dump data if disabled

This commit is contained in:
Thorsten Liebig 2012-05-24 15:26:23 +02:00
parent a81e58dbcd
commit a3ef97eb3e

View File

@ -144,6 +144,7 @@ int ProcessFieldsSAR::Process()
void ProcessFieldsSAR::DumpFDData()
{
if (Enabled==false) return;
unsigned int pos[3];
unsigned int orig_pos[3];
FDTD_FLOAT*** SAR = Create3DArray<float>(numLines);