GINO Graphics Suite - GINO v9.0  

gSetTracerMode

Syntax

[C/C++:]
void gSetTracerMode(int sw);
[F90:]
subroutine gSetTracerMode(sw)
integer, intent(in) :: sw

Arguments

sw
Trace switch

= GOFF, Switch off tracing (default)
= GGINOCALLS, Switch on tracing for user calls to GINO library
= GLIBRARIES, Switch on tracing for user calls to GINO library and GINO application libraries
= GALLCALLS, Switch on tracing for all calls to GINO library and  GINO application libraries

Description

When sw is not GOFF, gSetTracerMode() switches the tracing facility on. With tracing switched on GINO outputs a trace message which identifies routines from either the GINO library or GINO application libraries as they are called.

When sw = GGINOCALLS all calls to the GINO library are traced. When sw = GLIBRARIES user calls to GINO or GINO application libraries are traced, but internal calls to GINO by the application library are not traced. When sw = GALLCALLS all user calls and internal calls to GINO and any GINO application libraries used are traced.

See Also

gSetTracerMode Usage