User's Manual

CAEN RFID API Reference Manual
17
CAENRFIDLogicalSource Class
The CAENRFIDLogicalSource class is used to create logical source objects. Logical source objects represent an
aggregation of read points (antennas). Operations on the tags are performed using methods belonging to the logical
source. In addition to the methods used to operate on the tags, the logical source class exports methods to configure
the anticollision algorithm and to configure the composition of the logical source itself.
AddReadPoint Method
Description:
This method adds a read point to the logical source.
Parameters:
Name
Description
ReadPoint
A string representing the name of the read point (antenna).
Syntax:
C# representation:
public void AddReadPoint(
string ReadPoint)
JAVA representation:
public void AddReadPoint(
java.lang.String ReadPoint)
throws CAENRFIDException
C representation:
CAENRFIDErrorCodes CAENRFID_AddReadPoint(
CAENRFIDHandle handle,
char *SourceName,
char *ReadPoint);