From a6e2d74420f56499a7ab894b7970489a2fc11f9c Mon Sep 17 00:00:00 2001 From: Giovanni La Mura <giovanni.lamura@inaf.it> Date: Fri, 9 May 2025 18:44:51 +0200 Subject: [PATCH] Make ScattererConfiguration::_rcf structure public --- src/include/Configuration.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/include/Configuration.h b/src/include/Configuration.h index d23aa6ff..67666c6b 100644 --- a/src/include/Configuration.h +++ b/src/include/Configuration.h @@ -288,8 +288,6 @@ protected: dcomplex ***_dc0_matrix; //! \brief Vector of sphere radii expressed in m, with size [N_SPHERES]. double *_radii_of_spheres; - //! \brief Matrix of fractional transition radii with size [N_SPHERES x LAYERS]. - double **_rcf; //! \brief Vector of sphere ID numbers, with size [N_SPHERES]. int *_iog_vec; //! \brief Vector of layer numbers for every sphere, with size [N_SPHERES]. @@ -383,6 +381,8 @@ public: const int& max_layers = _max_layers; //! \brief Read only view on flag to control whether to add an external layer. const bool& use_external_sphere = _use_external_sphere; + //! \brief Matrix of fractional transition radii with size [CONFIGURATIONS x LAYERS]. + double **_rcf; /*! \brief Build a scatterer configuration structure. * -- GitLab