An AndAny ESP task compares two tracks and produces a track containing records from the first track for which there is at least one event in the second track within a specified time interval (before or after the first track's event). This section describes the parameters that you can set in the configuration section for an AndAny ESP task.
Configuration Parameter | Description |
---|---|
Input0 | The first input track. A record from this track is added to the output if a record occurs in the second track within the specified time interval. 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 AndAny . |
This engine produces a single output track, named TaskName.Output
. The output track has the same format as the input track Input0.
|