/* Prototypes */ /* Converts the LSW and the MSW values into an integer array containing the summed up analog values. The first trash element (due to the data transmission scheme ) are also removed. */ void Licel_Combine_Analog_Datasets(short* , short* ,int, long *, short *); /* Converts the raw Photon counting data into an integer array containing the summed up photon counting values. The first trash element (due to the data transmission scheme ) are also removed. The clipping information present in the most significant bit is masked out if neccessary*/ void Licel_Convert_Photoncounting(short* , int,long * ,int ); /* Normalizes the accumulated Data with respect to the number of cycles*/ void Licel_Normalize_Data( long *, int , int , double *); /* Scales the normalized data with respect to the input range */ void Licel_Scale_Analog_Data(double *, int , int , double *);