File: aaaread.me

package info (click to toggle)
pgplot5 5.2-13
  • links: PTS
  • area: non-free
  • in suites: potato
  • size: 6,280 kB
  • ctags: 5,903
  • sloc: fortran: 37,938; ansic: 18,809; sh: 1,147; objc: 532; makefile: 363; perl: 234; pascal: 233; tcl: 178; awk: 51; csh: 25
file content (185 lines) | stat: -rw-r--r-- 8,554 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
                    PGPLOT on NeXT Computers

                        Allyn F. Tennant
                   Marshall Space Flight Center
                          1995-Apr-29

OVERVIEW
This directory contains the system dependent routines needed to run
PGPLOT on a NeXT computer.  Several device handlers will compile and
run on the NeXT, allowing those devices to be used as before.

Also provided is a PGPLOT viewer program called pgview.  Pgview is
a stand alone NextStep program that uses interprocess communication to
communicate with programs using PGPLOT.  This allows pgview to be
a full NeXTstep application.  Existing PGPLOT programs can use pgview
without any modifications, other than being linked with an additional
device handler.  To use pgview, run the PGPLOT program, and when
prompted for a device name, enter /NEXT.  If the viewer has been
correctly installed, it will automatically launch.  The viewer will
create a window and display your plot in that window.  Using pgview
you can create several windows although you can only plot to one window
at a time.  Any window can be examined, resized, and/or printed after
the original PGPLOT program exits.

This version of pgview is configured for NextStep 3.x systems.


FORTRAN
The NeXT computer does not come with a Fortran compiler therefore
you must use a third party product.  The supplied makefile can be
used to compile and run PGPLOT with either the 1) Absoft, 2) Oasys
(Green Hill), or 3) f2c compilers.  Once you have selected a compiler
then read the compiler specific notes for it below.

IMPORTANT NOTES FOR f2c compiler
The f2c default is to treat backslash characters in strings as escape
characters like C, despite the fact this is completely unnecessary,
not to mention wrong, in Fortran.  The f2c program supports a -!bs
switch to turn off this default and this option should be used when
compiling the PGPLOT example programs.  The fc shell script provided
at the archive sites does not correctly deal with this option.  In
this directory I provide a shell script called nfc which will correctly
send -!bs to f2c and not to the C compiler.  I've changed the name
from fc to nfc (for Next Fortran to C) since fc is the name of a
ksh/bash built-in command.

IMPORTANT NOTES FOR Green Hill compiler
Code compiled with the Oasys compiler cannot read unformatted records
longer than 32k bytes.  This is a problem for the PGPLOT font file
which is currently written as a single record ~67000 bytes long.
The default installation with the gf77_cc option, should automatically
create a 'grfont.daf' file which is direct access format with a record
size that can be read.  If PGPLOT detects an filename extension of
'.daf' (instead of '.dat') then will automatically assume the font
file is direct access and read the file correctly.

The pgdemo1 program also causes the a problem with the Oasys compiler.
That program contains two routines (besj0 and besj1) that are also
in the Oasys supplied library and this prevents the program from
linking.  Until a better solution is found I suggest editing pgdemo1.f
and changing all occurrences of 'besj' to 'xbesj'.

IMPORTANT NOTES FOR Absoft compiler
The default mode for the Absoft compiler is to be case sensitive.  The
supplied configuration file and software assume this default.  Absoft
uses the compiler switch -f to fold routine names into lower case.
If you use this switch, you will need to edit some of the C wrappers
in sys_next/af77_src directory and change the upper case names
to lower case.

If you use any of the X11 drivers you should be aware of a bug in
the Absoft f77 script.  My version of this script reverses the order
in which libraries are called before passing the list to the linker.
Thus if you use f77 -o pgdemo1 -lpgplot -lX11, the linker will see
'-lX11 -lpgplot'.  This means that the linker will not be to find
any X11 routines called by PGPLOT.  The simple solution is to make
sure that you always put -lX11 before -lpgplot.  Since the makemake
script places -lX11 after -lpgplot, you must use a trick to get makemake
to get it to generate a makefile that will link the demos.  This trick
is to edit af77_cc.conf to contain:

   LIBS="-lX11 libpgplot.a -lNeXT_s -lsys_s"

This puts an extra reference to the PGPLOT library into the link
command, but it does ensure that linker will search the PGPLOT library
before the X11 library.  Thanks to Martin Shepherd for suggesting
this.


X WINDOWS
The NeXT computer does not come with an X server, and so if you want
to use X you need to obtain a third party product.  I've tested PGPLOT
with MouseX (the free X Window package), Pencom's demo server, and
the eXodus server.  In all cases, I've used the MouseX libraries
and include files to compile and link.

To include X Window drivers in the build, you should first edit the
*_cc.conf file for the Fortran compiler that you will use.  Where *
is either af77, gf77, or f2c.  Add -lX11 to the LIBS line as one
of the needed libraries.  (See Absoft note above.)

Although I can get pgdisp and the /XDISP drivers to compile and link,
I can not get anything plotted in pgdisp window.  Therefore I strongly
suggest that you use the /XWIND and/or /XSERVE drivers.  You may have
minor problems compiling drivers/xwdriv.c and drivers/pgxwin_server.c.
both file include <unistd.h> which is not on NeXT 3.0 system (newer
versions of NeXTStep include this file).  If the file is missing
then just comment out the include in the source.  It is not needed
on the NeXT.  Also, if the linker complains that the setpgid is not
defined in the pgxwin_server program, you should edit pgxwin_server.c
and comment out the line:

  setpgid(0,0);

Note, you should not do this unless forced since will couple the
server program too closely to the PGPLOT program, i.e., things
like aborting the PGPLOT program, via a ^C, may also abort the
server.


MAKE PGPLOT

You should now refer to the standard PGPLOT documentation to create
a makefile, and then compile PGPLOT.  In brief you will need to create
a directory where you can build PGPLOT, create a drivers.list file
(make sure you include the NEXT driver!) and then use the

$(PGPLOT)/makemake $(PGPLOT) next f2c_cc

where $(PGPLOT) is the directory containing the PGPLOT source.  Then
type make and wait.  This will create the library, demos, help files,
and the pgview program.  If you have asked for the XWIND driver, the
pgxwin_server program should also be created.

If you install pgview.app into the /LocalApps directory, then PGPLOT
will automatically launch it when you plot to the /next device.  If
pgview is not in LocalApps, then you should launch it by double clicking
on it before using /next (although it is possible to start it before
the timeout, if you forget).  Use the following commands to install:

strip pgview.app/pgview
cp -pr pgview.app /LocalApps

Using 'strip' will reduce the size of the program by a factor 8 and
this improves startup time.


Useful tips when using pgview

Remember that as part of the standard NeXT interface, holding down
the alternate key while clicking in the title bar will bring the window
to the top without making it key.  This is useful when you wish to
continue type in terminal window and have the plot window completely
visible.

Use the main menu to select either a Portrait or Landscape window.
Although the window can be resized, PGPLOT produces slightly different
output depending on the original aspect ratio of the plot.  These
aspect ratios were selected to match the aspect ratios of the /PS
and /VPS devices.  If you start with a Landscape window, then no matter
how you resize the window with the resize bar, PGPLOT will still assume
the same aspect ratio when drawing.  In other words, you first create
a plot and then resize window, it will look exactly the same as if you
had first first resized the window and then created the plot.

When PGPLOT starts, it plots to the most recently active viewer window
i.e., the last key window.  The viewer will not allow you to change
the active plot window while a plot is in progress.


BUG REPORTS:

The PGPLOT viewer, pgview, was my first NeXT program.  Thus I learned
about 1) Interprocess communication, 2) the Interface Builder, 3)
Objective C and 4) Display Postscript.  The viewer still has a few
rough edges, but it is usable.

Please send bug-reports/suggestions/thank-you notes (but not money)
to:

Internet:  allyn.tennant@msfc.nasa.gov
SPAN:      SSL::TENNANT

Do NOT send NextMail to that address.  Like all free support, you get
what you pay for.