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

forgotten

parent dc8346a1
No related branches found
No related tags found
No related merge requests found
......@@ -124,7 +124,7 @@
.\" ========================================================================
.\"
.IX Title "FRIDA 1"
.TH FRIDA 1 "2010-04-07" "perl v5.10.1" "frida manual"
.TH FRIDA 1 "2010-05-04" "perl v5.10.1" "frida manual"
.\" For nroff, turn off justification. Always turn off hyphenation; it makes
.\" way too many mistakes in technical documents.
.if n .ad l
......@@ -134,10 +134,6 @@ Frida \- Fast reliable interactive data analysis
.SH "SYNOPSIS"
.IX Header "SYNOPSIS"
\&\fBfrida\fR
.SH "NEWS"
.IX Header "NEWS"
The first \s-1JCNS\s0 School on Data Analysis for Quasielastic Neutron Scattering
with \s-1FRIDA\s0 will take place 28\-29 April 2010 at Garching. Register now: http://www.jcns.info/DataAnalysis2010/
.SH "DESCRIPTION"
.IX Header "DESCRIPTION"
Frida is software for scientific data analysis, primarily written for inelastic neutron scattering. Its data model is quite generic (data files consist of x\-y-dy tables that are differentiated by z coordinates), so that it can be used for many different kinds of observational data.
......
......@@ -19,7 +19,6 @@
<li><a href="#name">NAME</a></li>
<li><a href="#synopsis">SYNOPSIS</a></li>
<li><a href="#news">NEWS</a></li>
<li><a href="#description">DESCRIPTION</a></li>
<li><a href="#installation">INSTALLATION</a></li>
<li><a href="#documentation">DOCUMENTATION</a></li>
......@@ -49,12 +48,6 @@
<p>
</p>
<hr />
<h1><a name="news">NEWS</a></h1>
<p>The first JCNS School on Data Analysis for Quasielastic Neutron Scattering
with FRIDA will take place 28-29 April 2010 at Garching. Register now: <a href="http://www.jcns.info/DataAnalysis2010/">http://www.jcns.info/DataAnalysis2010/</a></p>
<p>
</p>
<hr />
<h1><a name="description">DESCRIPTION</a></h1>
<p>Frida is software for scientific data analysis, primarily written for inelastic neutron scattering. Its data model is quite generic (data files consist of x-y-dy tables that are differentiated by z coordinates), so that it can be used for many different kinds of observational data.</p>
<p>
......
......@@ -17,12 +17,6 @@ Frida - Fast reliable interactive data analysis
B<frida>
=head1 NEWS
The first JCNS School on Data Analysis for Quasielastic Neutron Scattering
with FRIDA will take place 28-29 April 2010 at Garching. Register now: http://www.jcns.info/DataAnalysis2010/
=head1 DESCRIPTION
Frida is software for scientific data analysis, primarily written for inelastic neutron scattering. Its data model is quite generic (data files consist of x-y-dy tables that are differentiated by z coordinates), so that it can be used for many different kinds of observational data.
......
......@@ -35,7 +35,7 @@ void NCalc::Calculator()
if (s[0]=='q')
return;
if (s[0]=='h' || s[0]=='?') {
printf( "enter valid arithmetic expression, or q to quit\n");
printf( "enter expression, or q to quit\n");
continue;
}
try {
......
......@@ -211,10 +211,9 @@ void CPlot::addSpec( bool as_line, int style_no,
nout++;
}
fclose(gp_fd);
if( !nout ){
cout << "no points in frame: " << info << "\n";
return;
}
if( !nout )
throw "no points in frame: " + info;
// Postscript copy:
snprintf( outlin, mLin, "\n%3u [", ++ps_snum );
......
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