libpgplotxx.a (C++ interface to PGPLOT)
README
Go to the documentation of this file.
1 this is <README>
2 ============================================================================
3 PGPLOT++ --- C++ interface for PGPLOT
4 ============================================================================
5 
6 This software is part of the project Seitosh. See README.1st in the root
7 directory of the collection or https://git.scc.kit.edu/Seitosh/Seitosh for
8 general installation instructions.
9 
10 This provides a C++ interface to the FORTRAN PGPLOT library. It is based on
11 the C-interface (cpgplot.h) coming with the library.
12 
13 Installation
14 ------------
15  environment variables:
16  LOCINCLUDEDIR Defines the path where header files will be copied for
17  usage in your own projects. You will pass this path to
18  the precompiler with the -I option.
19  LOCLIBDIR Defines the path where the binary library will be
20  placed.
21  TF_WWWBASEDIR Defines the path to your personal homepage. That's the
22  place where doxygen output will be written too (see
23  in the Makefile).
24 
25 make all installs headers, binary libraries and documentation
26 
27 Dependencies
28 ------------
29 This library requires code from libaff.
30 External dependency is PGPLOT.
31 The testprogram requires libtfxx in addition.
32 
33 When compiling the PGPLOT library you must use the same Fortran compiler you
34 use for the other code and in particular pass the options -ff2c and
35 -fno-backslash to the the gfortran compiler. See
36 https://git.scc.kit.edu/Seitosh/Seitosh/wikis/doc_PGPLOT
37 or contrib/pgplot/README.pgplot (as seen from the root directory of Seitosh)
38 for assistance.
39 
40 Detailed documentation is provided through doxygen source code. See target
41 doxydoc in the Makefile.
42 
43 ----- END OF README -----