~ubuntu-branches/ubuntu/wily/eso-midas/wily-proposed

« back to all changes in this revision

Viewing changes to prim/help/printe.alq

  • Committer: Package Import Robot
  • Author(s): Ole Streicher
  • Date: 2014-04-22 14:44:58 UTC
  • Revision ID: package-import@ubuntu.com-20140422144458-okiwi1assxkkiz39
Tags: upstream-13.09pl1.2+dfsg
ImportĀ upstreamĀ versionĀ 13.09pl1.2+dfsg

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
 
 
2
To define output devices for printing use ASSIGN/PRINT, for plot output use
 
3
ASSIGN/PLOT and for hardcopies of images ASSIGN/DISPLAY. Subsequent PRINT/...,
 
4
PLOT/...  or LOAD/IMAGE commands will then send their output to these devices.
 
5
 
 
6
For the commands COPY/GRAPHICS and COPY/DISPLAY the output device name is
 
7
a parameter in the command line.
 
8
 
 
9
If the printers are not Postscript printers, specific driver information
 
10
has to be entered into the file $MIDASHOME/$MIDVERS/systab/ascii/plot
 
11
in a format described in the header of that file.
 
12
Postscript printers do not have to be put into that file.
 
13
 
 
14
If the printer is a colour printer, specify that via `printer_name.c',
 
15
e.g. if pacol22 is a colour laser printer, use `pacol22.c' as printer
 
16
specfication.
 
17
 
 
18
There are also generic names for a line printer (LPRINT), a grayscale postscript 
 
19
printer (LASER) and colour postscript (COLOUR) in Midas.
 
20
 
 
21
These generic names are set in the file $MIDASHOME/$MIDVERS/monit/devices.sh
 
22
for all users, which is executed when typing $ inmidas or $gomidas.
 
23
 
 
24
E.g. the entries from the currently shipped devices.sh file represent the 
 
25
device setup at ESO from 2001, and are:
 
26
LPRINT=lp2usr1   ;export LPRINT     # Line printer, 2nd floor, user room
 
27
LASER=ps2usr0    ;export LASER      # Postcript B/W, 2nd floor, user room
 
28
COLOUR=pc2usr0.c   ;export COLOUR   # Postcript Color, 2nd floor, user room
 
29
SLIDE=sl2usr0    ;export SLIDE      # Chromascript, 2nd floor, user room
 
30
PENPLOT=hp2usr0  ;export PENPLOT    # HP plotter, 2nd floor, user room
 
31
 
 
32
For example, if you just have a single inkjet (postscript) printer, named 
 
33
hp-inkjet99, then you could change the file devices.sh as follows:
 
34
LPRINT=hp-inkjet99   ;export LPRINT     
 
35
LASER=hp-inkjet99    ;export LASER     
 
36
COLOUR=hp-inkjet99.c   ;export COLOUR 
 
37
 
 
38
As individual user you can adapt this file to your specific needs and store
 
39
the modified devices.sh in your local $MID_WORK directory. 
 
40
Midas uses then this device file instead of the global devices.sh in 
 
41
$MIDASHOME/$MIDVERS/monit.o
 
42