From: eap Date: Tue, 6 May 2008 10:12:47 +0000 (+0000) Subject: PAL19680 Meshers: BLSURF, GHS3D and holed shapes X-Git-Tag: V4_1_2rc3~2 X-Git-Url: http://git.salome-platform.org/gitweb/?a=commitdiff_plain;h=a5531c964a96c1d87e9d74cbeee75dedef2cc800;p=plugins%2Fblsurfplugin.git PAL19680 Meshers: BLSURF, GHS3D and holed shapes +#ifdef _DEBUG_ + cout << "blsurf_set_param(): " << opIt->first << " = " << opIt->second << endl; +#endif --- diff --git a/src/BLSURFPlugin/BLSURFPlugin_BLSURF.cxx b/src/BLSURFPlugin/BLSURFPlugin_BLSURF.cxx index 345eb6a..a35f3c4 100644 --- a/src/BLSURFPlugin/BLSURFPlugin_BLSURF.cxx +++ b/src/BLSURFPlugin/BLSURFPlugin_BLSURF.cxx @@ -204,8 +204,12 @@ void BLSURFPlugin_BLSURF::SetParameters(const BLSURFPlugin_Hypothesis* hyp, blsu const BLSURFPlugin_Hypothesis::TOptionValues & opts = hyp->GetOptionValues(); BLSURFPlugin_Hypothesis::TOptionValues::const_iterator opIt; for ( opIt = opts.begin(); opIt != opts.end(); ++opIt ) - if ( !opIt->second.empty() ) + if ( !opIt->second.empty() ) { +#ifdef _DEBUG_ + cout << "blsurf_set_param(): " << opIt->first << " = " << opIt->second << endl; +#endif blsurf_set_param(bls, opIt->first.c_str(), opIt->second.c_str()); + } } else { MESSAGE("BLSURFPlugin_BLSURF::SetParameters using defaults");