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
| 43
Use10MHz(Boolean use)
When the 10 MHz input is switched on, but no valid signal is connected to the input, an error flag is set
and the error led on the front panel is lit.
Note: When using the 10 MHz reference, input 16 on the 156.25 ps devices and input 8 on the 78.125 ps
devices cannot be used.
Syntax:
C#
myTagger.Use10MHz(bool use)
C++
timetag.Use10MHz(bool use)
FreezeSingleCounter()
This function stores all the single counters synchronously. This function also returns the time
between the last two calls to FreezeSingleCounter. The time is expressed in 5 ns ticks.
Syntax:
C#
myTagger.FreezeSingleCounter()
C++
timetag.FreezeSingleCounter()
GetSingleCount(
int
input)
This returns the number of input pulses in between the last two calls of
FreezeSingleCounter
.
This example calculates the frequency of input 4:
int
time = FreezeSingleCounter();
int
pulses = GetSingleCount(4);
double
frequency = 200e6 * pulses / time;
Syntax:
C#
myTagger.GetSingleCount(
int
input)
C++
timetag.GetSingleCount(
int
input)