StandardSetup
StandardSetup();
None
StandardSetup Object

METHOD DESCRIPTION
void enableResetController( boolean enable ) Enable a reset controller.
void enablePCITests( boolean enable, int num_of_tests ) Enable a PCI hardware test (TDL) the number of specified times.
void enableTIMTests( boolean enable, int num_of_tests ) Enable a timing hardware test (TDL) the number of specified times.
void enableUTLTests( boolean enable, int num_of_tests ) Enable a utility hardware test (TDL) the number of specified times.
void enablePCIDownload( boolean enable, String file ) Enable a PCI .lod file upload using the specified file.
void enableTIMDownload( boolean enable, String file ) Enable a timing .lod file upload using the specified file.
void enableUTLDownload( boolean enable, String file ) Enable a utility .lod file upload using the specified file.
void enablePowerOn( boolean enable ) Enable controller power-on.
void enableImageSize( boolean enable, int rows, int cols ) Enable the readout image size to be rows by cols pixels.

Performs the standard controller setup without any graphical user interface.

Example:
	setup = StandardSetup();
	setup.enableResetController( true );
	setup.enablePCITests( true, 234 );
	setup.enableTIMTests( true, 123 );
	setup.enablePCIDownload( false, "" );
	setup.enableTIMDownload( true, "C:\\tim.lod" );
	setup.enablePowerOn( true );
	setup.enableImageSize( true, 1000, 1000 );
	setup .run();