An AndThenAny ESP task compares two tracks and produces a track containing records from the first track which are followed within a specified time interval by at least one event in the second track. This section describes the parameters that you can set in the configuration section for an AndThenAny ESP task.
Configuration Parameter | Description |
---|---|
Input0 | The first input track. A record from this track is added to the output if it is followed, within the specified time interval, by a record in the second track. If the LuaScript parameter is set your Lua function must also return true , otherwise the record is discarded. |
Input1 | The second input track. Records from this track are never added to the output. |
LuaScript | The path of a Lua script that contains a function to determine whether a record should be included in the output track. |
MaxTimeInterval | The maximum interval from a record in the first track to a record in the second track, for the record in the first track to be included in the output. |
MinTimeInterval | The minimum interval from a record in the first track to a record in the second track, for the record in the first track to be included in the output. |
Type | The type of ESP engine to use. Set this parameter to AndThenAny . |
This engine produces a single output track, named TaskName.Output
. The output track has the same format as the input track Input0.
|