From a5531c964a96c1d87e9d74cbeee75dedef2cc800 Mon Sep 17 00:00:00 2001 From: eap Date: Tue, 6 May 2008 10:12:47 +0000 Subject: [PATCH] PAL19680 Meshers: BLSURF, GHS3D and holed shapes +#ifdef _DEBUG_ + cout << "blsurf_set_param(): " << opIt->first << " = " << opIt->second << endl; +#endif --- src/BLSURFPlugin/BLSURFPlugin_BLSURF.cxx | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) 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"); -- 2.39.2