w w w . u q d e v i c e s . c o m
L o g i c 1 6 U s e r M a n u a l
| 39
4.3.3
API Methods
Objects
TTInterface()
This is for programs using ttInterface.dll (.NET). TTInterface() must be initialised in order to access all
functions required to operate the device.
Syntax:
C#
myTagger =
new
TTInterface();
VB
myTagger = New TTInterface()
Python
myTagger = TTInterface()
Logic (myTagger)
This is for programs using ttInterface.dll (.NET). The constructor takes a
ttInterface
object which
must be already created, and creates a
Logic
object. The
ttInterface
object can already be opened
or not. (Logic Mode)
Syntax:
C#
myLogic = new Logic(myTagger);
VB
myLogic = New Logic(myTagger)
Python
myLogic = Logic(myTagger)
CTimeTag
This class is only for C++, which must be initialised in order to access all functions required to operate the
device.
Syntax:
C++
CTimeTag timetag;
CLogic
This class is only for C++, which must be initialised in order to access all functions required for correlation
counting (Logic Mode).
Syntax:
C++
CLogic logic(timetag);