Category: Statement

Syntax: parallel <statement> end

Description

Defines a new timeline that is valid within the parallel - end scope. Time is starting from the current value of the internal time counter.

Internal time counter after the end of statement returns to the state it was before parallel statement. Parallel statements can be nested.

Example:

%% Davies ENDOR sequence mwpulse 200ns %% Inversion pulse parallel %% Preserve time counter rfpulse 8us %% RF pulse end %% Return time counter to the preserved position wait 10us %% Wait until the detection sequence mwpulse 100ns %% Between this pulse and the first one - 10us wait 500ns mwpulse 200ns wait 500ns detect a %% Detect signal 'a'

Legend: PPL keywords; PPL pulse commands; comments.