From 54c987b32a2ce1ceaca6928ae08e64a9609d06f1 Mon Sep 17 00:00:00 2001 From: Giovanni La Mura <giovanni.lamura@inaf.it> Date: Wed, 6 Dec 2023 13:42:21 +0100 Subject: [PATCH] Improve memory cleaning in sphere --- src/sphere/sphere.cpp | 36 +++++++++++++++++++++++------------- 1 file changed, 23 insertions(+), 13 deletions(-) diff --git a/src/sphere/sphere.cpp b/src/sphere/sphere.cpp index 3c5ce46d..e482ac56 100644 --- a/src/sphere/sphere.cpp +++ b/src/sphere/sphere.cpp @@ -14,9 +14,6 @@ using namespace std; //! \brief C++ implementation of SPH void sphere() { complex<double> arg, s0, tfsas; - complex<double> **tqspe, **tqsps; - double **tqse, **tqss; - double *argi, *args, *gaps; double th, ph; printf("INFO: making legacy configuration ...\n"); ScattererConfiguration *conf = ScattererConfiguration::from_dedfb("../../test_data/sphere/DEDFB"); @@ -28,6 +25,7 @@ void sphere() { GeometryConfiguration *gconf = GeometryConfiguration::from_legacy("../../test_data/sphere/DSPH"); if (sconf->number_of_spheres == gconf->number_of_spheres) { int isq, ibf; + double *argi, *args, *gaps; double cost, sint, cosp, sinp; double costs, sints, cosps, sinps; double scan; @@ -48,6 +46,18 @@ void sphere() { cmul[i] = new double[4]; cmullr[i] = new double[4]; } + complex<double> **tqspe, **tqsps; + double **tqse, **tqss; + tqse = new double*[2]; + tqss = new double*[2]; + tqspe = new std::complex<double>*[2]; + tqsps = new std::complex<double>*[2]; + for (int ti = 0; ti < 2; ti++) { + tqse[ti] = new double[2](); + tqss[ti] = new double[2](); + tqspe[ti] = new std::complex<double>[2](); + tqsps[ti] = new std::complex<double>[2](); + } double frx = 0.0, fry = 0.0, frz = 0.0; double cfmp, cfsp, sfmp, sfsp; complex<double> *vint = new complex<double>[16]; @@ -272,16 +282,6 @@ void sphere() { printf("DEBUG: TFSAS = (%lE,%lE)\n", tfsas.real(), tfsas.imag()); double sqk = vk * vk * sconf->exdc; aps(zpv, gconf->l_max, nsph, c1, sqk, gaps); - tqse = new double*[2]; - tqss = new double*[2]; - tqspe = new std::complex<double>*[2]; - tqsps = new std::complex<double>*[2]; - for (int ti = 0; ti < 2; ti++) { - tqse[ti] = new double[2]; - tqss[ti] = new double[2]; - tqspe[ti] = new std::complex<double>[2]; - tqsps[ti] = new std::complex<double>[2]; - } rabas(gconf->in_pol, gconf->l_max, nsph, c1, tqse, tqspe, tqss, tqsps); for (int i170 = 1; i170 <= nsph; i170++) { if (c1->iog[i170 - 1] >= i170) { @@ -546,6 +546,16 @@ void sphere() { } delete[] cmul; delete[] cmullr; + for (int ti = 1; ti > -1; ti--) { + delete[] tqse[ti]; + delete[] tqss[ti]; + delete[] tqspe[ti]; + delete[] tqsps[ti]; + } + delete[] tqse; + delete[] tqss; + delete[] tqspe; + delete[] tqsps; printf("Done.\n"); } else { // NSPH mismatch between geometry and scatterer configurations. throw UnrecognizedConfigurationException( -- GitLab