Gocator Line Profile Sensors: User Manual
• 554
Adding a new measurement does not require special handling. The new measurement is just not
instantiated in a previous configuration.
Version
You can define the version number of your tools in Asm.x.h.
#define TOOL_VERSION kVersion_Stringify_(1, 0, 0, 23)
The version is displayed on the Manage page, in the Support category.
Common Programming Operations
The following sections describe common programming operations.
Input Data Objects
The VProcess function receives a GdkToolInput object as input. This object is a container where the
information and actual data of the received input is stored.
GdkInputItem item = GdkToolInput_Find(input, obj->dataSource);
GdkDataInfo itemInfo = GdkInputItem_Info(item);
The GdkToolInput_Find and GdkInputItem_Info functions are used to extract the item and info
objects. These objects can then be used to retrieve the input data and information (for example, offset
and resolution) associated to the input. The following are some examples:
Retrieving offset and scales