|
|
The JetProcSignal returned to JETDSP by some external functions has a fixed structure. This page gives the values allowed for the elements within the structure and when they should be used.
| Element | Value |
| data | pointer to data array. |
| time | pointer to time array. |
| x | pointer to x array. |
| type | Signal Type
|
| tAxisType |
Time axis type |
| xAxisType | X axis type
|
| multigraph | Set to 1 if multigraph |
| n_multi | Number of multigraphs (1 if not used) |
| slice | String containing slice info. |
| status | 1 for success, 0 for failure |
Elements of JetProcSignal structure
| Signal type | Description |
| 'SV' | Single data point, no time or x values. |
| '2D' | 1D vector of data points and time points, no x values. |
| '3D' | 2D array of data points(t,x), vector or array of time and x points. |
Allowed values for signal type
| Time axis type | Format | Description |
| 0 | T(t) | Normal case |
| 1 | T(t,x) | Time depends on the x index |
| 2 | T(t,Mg) | Time depends on the multigraph index |
| 3 | T(t,x,Mg) | Time depends on the x and multigraph indeces |
Allowed values for Time axis type
| Time axis type | Format | Description |
| 0 | X(x) | Normal case |
| 1 | X(t,x) | X depends on the t index (TRANSP) |
| 2 | X(x,Mg) | X depends on the multigraph index |
| 3 | X(t,x,Mg) | X depends on the t and multigraph indices |
Allowed values for X axis type
|