From 000a9f5a0a05ff177653215c4c78cacbeb1b514b Mon Sep 17 00:00:00 2001 From: "Joachim Wuttke (laptop)" <j.wuttke@fz-juelich.de> Date: Fri, 17 Feb 2012 10:36:42 +0100 Subject: [PATCH] rm debmsg (sync problem) --- pub/src/dualplot.cpp | 10 ---------- 1 file changed, 10 deletions(-) diff --git a/pub/src/dualplot.cpp b/pub/src/dualplot.cpp index ff939d3f..e5182d2c 100644 --- a/pub/src/dualplot.cpp +++ b/pub/src/dualplot.cpp @@ -122,7 +122,6 @@ void CPlot::setAux( string cmd ) void CPlot::plotFrame( string xlabel, string ylabel ) { - cout << "DEB00\n"; gp_write( "set nologscale" ); string whichlog=""; if (X.logflag) whichlog += "x"; @@ -148,11 +147,8 @@ void CPlot::plotFrame( string xlabel, string ylabel ) ps_accu.push_back( "\n/xPlotFrame {\n" ); if ( X.logflag && X.inf<= 0 ) throw "BUG: x log incompatible with limits " + X.str(); - cout << "DEB11\n"; X.calc_ticks( Tacks, &ntpt, ticklim ); - cout << "DEB12\n"; ps_ticktack( Tacks, ntpt, ticklim, &X); - cout << "DEB13\n"; snprintf( outlin, mLin-4, " {(%s", xlabel.c_str() ); strncat( outlin, ")}\n", mLin ); ps_accu.push_back( outlin ); @@ -163,19 +159,14 @@ void CPlot::plotFrame( string xlabel, string ylabel ) ps_accu.push_back( " xCL\n" ); ps_accu.push_back( "} def\n" ); - cout << "DEB20\n"; ps_accu.push_back( "\n/yPlotFrame {\n" ); if ( Y.logflag && Y.inf<= 0 ) throw "BUG: y log incompatible with limits " + Y.str(); - cout << "DEB21\n"; Y.calc_ticks( Tacks, &ntpt, ticklim ); - cout << "DEB22\n"; ps_ticktack( Tacks, ntpt, ticklim, &Y); - cout << "DEB23\n"; snprintf( outlin, mLin, " {(%s", ylabel.c_str() ); strncat( outlin, ")}\n", mLin ); ps_accu.push_back( outlin ); - cout << "DEB30\n"; ps_accu.push_back( " 0 10 0 0 90 0 " "OneAxx Axx Tic Tac yNumL %% left y axis\n" ); ps_accu.push_back( " 0 10 10 0 90 180 " @@ -183,7 +174,6 @@ void CPlot::plotFrame( string xlabel, string ylabel ) ps_accu.push_back( " yCL\n" ); ps_accu.push_back( "} def\n" ); ps_accu.push_back( "\n%% modeDD\nplotbefore\n" ); - cout << "DEB99\n"; } -- GitLab