ReadoutCC( useGUI );
boolean useGUI |
True to launch the readout controller configuration
parameter window; false to run without using a windowed interface. |
owl.CCParams.CCScriptFrame (useGUI=true) or ReadoutCC Object (useGUI=false)
METHOD |
DESCRIPTION |
void setAmp( int amp ) |
The array readout amplifier to use. Can be one of the following sets
(depending on the controller configuration parameters): set #1 {
CameraAPI.AMP_0, CameraAPI.AMP_1,
CameraAPI.AMP_2, CameraAPI.AMP_3, CameraAPI.AMP_ALL }. |
boolean isSupported() |
True if this parameter is supported by the controller; false
otherwise. |
void run() |
Starts sending the command to the controller. For use with
[useGUI = false] only. |
void show() |
Call to show the graphical user interface. For use with
[useGUI = true ] only. |
void destroy() |
Closes and disposes of the graphical user interface. Call
to exit. For use with [useGUI = true] only. |
Allows array readout amplifier parameters to be set on the
controller. Can be run with or without a graphical user
interface.
To run with a graphical user interface:
ReadoutCC( true ).show();
or
s = ReadoutCC( true );
s.show();
To run without a user interface:
s = ReadoutCC( false );
s.setAmp( CameraAPI.AMP_LR );
s.run();