From c789191f9c77a5f523090ba6eb7a8f9720db9187 Mon Sep 17 00:00:00 2001 From: hinder Date: Sun, 13 Jun 2010 21:57:39 +0000 Subject: Remove debugging printf statements git-svn-id: http://svn.einsteintoolkit.org/cactus/EinsteinAnalysis/Multipole/trunk@55 4f5cb9a8-4dd8-4c2d-9bbd-173fa4467843 --- src/interpolate.cc | 2 -- src/multipole.cc | 2 -- src/utils.cc | 1 - 3 files changed, 5 deletions(-) diff --git a/src/interpolate.cc b/src/interpolate.cc index 5c9946c..943a9ee 100644 --- a/src/interpolate.cc +++ b/src/interpolate.cc @@ -100,8 +100,6 @@ void Multipole_Interp(CCTK_ARGUMENTS, // // NOTE: depending on the interval of integration, denominator above may // // need to be modified to avoid double counting -// // printf("Multipole: Interpolating %s\n", var_name); - // const CCTK_INT num_input_arrays = 1; // const CCTK_INT num_output_arrays = 1; // const CCTK_INT num_dims = 3; diff --git a/src/multipole.cc b/src/multipole.cc index 30a6624..b0bc015 100644 --- a/src/multipole.cc +++ b/src/multipole.cc @@ -265,7 +265,6 @@ extern "C" void Multipole_Calc(CCTK_ARGUMENTS) if (!initialized) { - printf("Multipole: Allocating memory in Multipole_Calc\n"); real = new CCTK_REAL[array_size]; imag = new CCTK_REAL[array_size]; th = new CCTK_REAL[array_size]; @@ -277,7 +276,6 @@ extern "C" void Multipole_Calc(CCTK_ARGUMENTS) yhat = new CCTK_REAL[array_size]; zhat = new CCTK_REAL[array_size]; - printf("Multipole: parsing variables string.\n"); parse_variables_string(variables, vars, &n_variables); get_spin_weights(vars, n_variables, spin_weights, &n_spin_weights); Multipole_CoordSetup(ntheta, nphi, xhat, yhat, zhat, th, ph); diff --git a/src/utils.cc b/src/utils.cc index 00c4752..746c599 100644 --- a/src/utils.cc +++ b/src/utils.cc @@ -231,7 +231,6 @@ void Multipole_Integrate(int array_size, int nthetap, // Construct an array for the real integrand if (!allocated_memory) { - printf("Multipole: Allocating memory for integrand\n"); fr = new CCTK_REAL[array_size]; fi = new CCTK_REAL[array_size]; allocated_memory = true; -- cgit v1.2.3