Skip to content
Snippets Groups Projects
Commit 000a9f5a authored by Wuttke, Joachim's avatar Wuttke, Joachim
Browse files

rm debmsg (sync problem)

parent a6dce4c4
No related branches found
No related tags found
No related merge requests found
......@@ -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";
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment