| IF_GOTO | [Conditional jump (Scripting operation)] |
| IF_THEN | [Conditional execution of operations (Scripting operation)] |
| DO | [Start of a loop (Scripting operation)] |
| EXIT | [Ends execution of current operation loop (Scripting operation)] |
| CYCLE | [Starts next loop iteration (Scripting operation)] |
Where:
| Comparator | Alternate | Comparision |
|---|---|---|
| .EQ. | == | Equal to |
| .NE. | /= | Not equal to |
| .GT. | > | Greater than |
| .GE. | >= | Greater than or equal to |
| .LT. | < | Less than |
| .LE. | <= | Less than or equal to |
NOTES
| IF( [xlen] >= 15 ) | [xpad] = 57 |
| IF( [xlen] .GE. 15 ) | [xpad] = 57 |
| IF( [xlen] < (13-2) ) | [resol] = 5.6 |
| IF( [xlen] < 13 ) | CYCLE (Within a DO loop) |
| [file] = 'img000' | ||
| IF( [xlen] < 13 ) | [file] = 'img001' |
Examples: SUBROUTINE: LOGIFQ CALLER: SPIDER