Data Analysis for CROP
Up one levelThe reason that the program was inconsistent about reading in data turned out to be that the trigger count (column 1 of the data file) and 1PPS count (column 10) are sometimes greater than what a C++ data type INT can provide. It was decided to use UNSIGNED LONG INT for the mentioned values. UNSIGNED LONG INT ranges from 0 to 4,294,967,295. The maximum possible values for the trigger count and 1PPS count are 4,294,967,295 as well, since both of those quantities are 8-digit hexadecimal number; and 0xFFFFFFFF = 4,294,967,295.
There are currently no items in this folder.