15 if instructions, If instructions, If_all inst – Teledyne LeCroy UWBTrainer Exerciser Script Language User Manual

Page 70: 62 if_any inst, 62 if_condition in

Advertising
background image

LeCroy Corporation

UWBTrainer Exerciser - Generation Script Language Reference Manual

62

9.15 If Instructions

You can check whether some condition is hit or not.

Format

Test one OR several conditions:

If_Condition( condition_name_1

[

, condition_name_2, ...

]

)

{

<

instructions

>

}

[

else_condition

{

<instructions>

}

]

Format

Test one OR several conditions (the same as If_Condition):

If_Any( condition_name_1

[

, condition_name_2, ...

]

)

{

<

instructions

>

}

[

else_condition
{
<
instructions>
}

]

Format

Test ALL conditions:

If_All( condition_name_1

[

, condition_name_2, ...

]

)

{

<

instructions

>

}

[

else_condition
{
<
instructions>
}

]

Advertising