10 time construction functions, 1 time() – Teledyne LeCroy Verification Script Engine for Teledyne LeCroy PETracer Reference Manual User Manual

Page 49

Advertising
background image

Teledyne LeCroy

Verification Script Engine Reference Manual

Version 6.6x

44

10 Time Construction Functions


This group of functions are used to construct VSE time objects.


10.1 Time()


Constructs a verification script time object.


Format:

Time(nanoseconds)

Time(seconds, nanoseconds)

Return values:

First function returns [0, nanoseconds]
Second function returns [seconds, nanoseconds]


Parameters:

nanoseconds

Number of nanoseconds in specified time

seconds

Number of seconds in specified time

Example:

Time ( 50 * 1000 ); # - create time object of 50 microseconds

Time (3, 100); # - create time object of 3 seconds and 100 nanoseconds

Time( 3 * MICRO_SECS ); # - create time object of 3 microseconds

Time( 4 * MILLI_SECS ); # - create time object of 4 milliseconds


Note: MICRO_SECS and MILLI_SECS are constants defined in VS_constants.inc.

Advertising