DOCS:
Reference documentation: http://plplot.sourceforge.net/docbook-manual/plplot-html-5.9.0/
Plplot homepage: http://plplot.sourceforge.net
Plplot wiki: http://www.miscdebris.net/plplot_wiki/index.php?title=Main_Page

Notes:
- Cleanup stream handling code to keep track of the streams in a list.
- "Legends?" for the lables?

Indentation:
k&r style indentation (indent -kr *.[c,h])

Vim options:
set tabstop=8
set shiftwidth=4
set expandtab

-------------------------------------------------------------------------------
Rememer to set:
export LD_LIBRARY_PATH="$LD_LIBRARY_PATH:/h/masar/plplot-truetype/lib"
setenv LD_LIBRARY_PATH /h/masar/plplot-truetype/lib

For more in depth work with the fonts in the plot, one can look at:
http://plplot.sourceforge.net/docbook-manual/plplot-html-5.9.0/characters.html#fci

-------------------------------------------------------------------------------
COMPILE INSTRUCTIONS FOR PLPLOT ITSELF:

First you need to have cmake installed.
It has been compiled already and you can find it in /h/masar/cmake/bin.

Basic instructions: http://www.miscdebris.net/plplot_wiki/index.php?title=Linux
Modifications: 

Using CMake and including truetype:

csh% cmake -DCMAKE_INSTALL_PREFIX:PATH=/h/masar/plplot-truetype/ -DENABLE_f77=OFF -DENABLE_f95=OFF -DBUILD_TEST=ON -DWITH_FREETYPE=OFF -DENABLE_octave=OFF -DENABLE_tk=OFF -DENABLE_tcl=OFF -DENABLE_cxx=OFF -DHAVE_FREETYPE=OFF -DHAVE_AGG=OFF -DWITH_CSA=OFF -DPL_FREETYPE_FONT_PATH=/h/masar/sfd/ -DWITH_FREETYPE=ON  -DHAVE_FREETYPE=ON

Remember, you can also use the curses interface for cmake, just replace "cmake" with "ccmake".

csh% make && make install

-------------------------------------------------------------------------------
FILES:

plot_test.x - A test with multiple streams in messed up order.
simple.x - A simple test using xwin driver
summary_plot.x - Version of summary.x, collecting data from summaryfiles and plot.

plot_canvas_test.x - Test plotting on the gnome2 canvas widget.
summary_plot_live.x - Basic application that monitors directories waiting for new summary files and then plot the new line segments when they arrive.
errorbar_test.x - A test application showing errorbar plotting.

