LINEUP(OPCS) Optical Printer Control System LINEUP(OPCS)
NAME
lineup - (CUSTOM) seat the camera for lineups
USAGE
lineup [no arguments]
DESCRIPTION
Seats the camera so a lineup can be done.
This command is actually a script defined with a RUNCMD(OPCSDEFS)
command, and is normally customized by your local site engineer.
This command normally does the following operations:
> Seat the camera
> Wait for user to hit a key
> Unseat the camera
INSTALLATION NOTES
An example implementation of the lineup command might be done as
follows. Add the following command to the 'runcmd' section of your
opcsdefs.opc file:
runcmd lineup lineup.run 0
..then create a file called 'lineup.run' which contains the following
text:
@ # Seat camera. 'go' won't affect camera counters.
@ go c 1000
##### CAMERA SEATED FOR LINEUP ###
@ pse -noabort
##### CAMERA BACK TO NORMAL ###
@ # Unseat camera by moving back 1000 pulses.
@ go c -1000
A slightly more colorful version, assuming you know how to enter ANSI
and control characters into your text editor:
@ go c 1000
#<BS><ESC>[1m*** <ESC>[5mCAMERA SEATED FOR LINEUP<ESC>[0m<ESC>[1m ***<ESC>[0m
@ pse -noabort
#<BS><ESC>[K<ESC>[A<ESC>[A<ESC>[K
@ go c -1000
ORIGIN
Gregory Ercolano, Los Feliz California 10/12/90