some test code in test.cpp
This commit is contained in:
parent
6a55ceb884
commit
0cf64daf2e
|
@ -8,7 +8,7 @@ CC = g++
|
|||
#COPTS = -fPIC -DLINUX -O2 -std=c++17 -lpthread
|
||||
COPTS = -fPIC -DLINUX -g -O0 -Wall -std=c++17 -lpthread
|
||||
|
||||
CAENLIBS = -lCAENDigitizer
|
||||
CAENLIBS = -lCAENDigitizer -lCAENVME
|
||||
|
||||
ROOTLIBS = `root-config --cflags --glibs`
|
||||
|
||||
|
|
95
Aux/test.cpp
95
Aux/test.cpp
|
@ -18,6 +18,10 @@
|
|||
#include <vector>
|
||||
#include <regex>
|
||||
|
||||
#include <CAENVMElib.h>
|
||||
|
||||
#include <time.h>
|
||||
|
||||
static struct termios g_old_kbd_mode;
|
||||
|
||||
static void cooked(void);
|
||||
|
@ -227,10 +231,100 @@ void GetOneAgg(){
|
|||
|
||||
}
|
||||
|
||||
void TestVME(){
|
||||
|
||||
int ret = -1;
|
||||
char SWRel[100];
|
||||
ret = CAENVME_SWRelease(SWRel);
|
||||
printf("ret = %d | Software release : %s\n", ret, SWRel);
|
||||
|
||||
short ConnetNode = 0;
|
||||
uint32_t link = 0;
|
||||
int32_t handle;
|
||||
|
||||
ret = CAENVME_Init2(cvPCIE_A5818_V3718, &link, ConnetNode, &handle);
|
||||
printf("ret = %d \n", ret);
|
||||
|
||||
// ret = CAENVME_DeviceReset(handle); // only for A2818, A2719, and V2718
|
||||
// printf("ret = %d \n", ret);
|
||||
|
||||
char FWRel[100];
|
||||
ret = CAENVME_BoardFWRelease(handle, FWRel);
|
||||
printf("ret = %d | Firmware release : %s\n", ret, FWRel);
|
||||
|
||||
char DrRel[100];
|
||||
ret = CAENVME_DriverRelease(handle, DrRel);
|
||||
printf("ret = %d | Driver release : %s\n", ret, DrRel);
|
||||
|
||||
CVVMETimeouts timeoutValue = CVVMETimeouts::cvTimeout50us;
|
||||
ret = CAENVME_SetTimeout(handle, timeoutValue);
|
||||
printf("ret = %d \n", ret);
|
||||
|
||||
ret = CAENVME_GetTimeout(handle, &timeoutValue);
|
||||
printf("ret = %d | timeout : %d\n", ret, timeoutValue);
|
||||
|
||||
|
||||
// ret = CAENVME_ReadRegister(
|
||||
|
||||
|
||||
ret = CAENVME_End(handle);
|
||||
printf("ret = %d \n", ret);
|
||||
|
||||
}
|
||||
|
||||
int TestDigitizerRaw(){
|
||||
|
||||
int handle;
|
||||
int ret = CAEN_DGTZ_OpenDigitizer(CAEN_DGTZ_OpticalLink, 0, 0, 0, &handle);
|
||||
if( ret != 0 ) {
|
||||
printf("==== open digitizer fail.\n");
|
||||
printf("=========== close Digitizer \n");
|
||||
CAEN_DGTZ_SWStopAcquisition(handle);
|
||||
CAEN_DGTZ_CloseDigitizer(handle);
|
||||
return 0;
|
||||
}
|
||||
|
||||
CAEN_DGTZ_BoardInfo_t BoardInfo;
|
||||
ret = (int) CAEN_DGTZ_GetInfo(handle, &BoardInfo);
|
||||
|
||||
printf("Connected to Model %s with handle %d\n", BoardInfo.ModelName, handle);
|
||||
printf(" Family Code : %d \n", BoardInfo.FamilyCode);
|
||||
printf("No. of Input Channels : %d \n", BoardInfo.Channels);
|
||||
printf(" SerialNumber : %d \n", BoardInfo.SerialNumber);
|
||||
printf(" ADC bit : %d \n", BoardInfo.ADC_NBits);
|
||||
printf(" ROC FPGA Release : %s \n", BoardInfo.ROC_FirmwareRel);
|
||||
printf(" AMC FPGA Release : %s \n", BoardInfo.AMC_FirmwareRel);
|
||||
|
||||
timespec ta, tb;
|
||||
long long duration;
|
||||
uint32_t value;
|
||||
|
||||
clock_gettime(CLOCK_REALTIME, &ta);
|
||||
ret = CAEN_DGTZ_WriteRegister(handle, 0x8034, 3);
|
||||
clock_gettime(CLOCK_REALTIME, &tb);
|
||||
printf("ret = %d \n", ret);
|
||||
duration = tb.tv_nsec - ta.tv_nsec;
|
||||
printf("duration = %lld ns\n", duration);
|
||||
|
||||
clock_gettime(CLOCK_REALTIME, &ta);
|
||||
ret = CAEN_DGTZ_ReadRegister(handle, 0x1034, &value);
|
||||
clock_gettime(CLOCK_REALTIME, &tb);
|
||||
printf("ret = %d \n", ret);
|
||||
duration = tb.tv_nsec - ta.tv_nsec;
|
||||
printf("duration = %lld ns | value = %u\n", duration, value);
|
||||
|
||||
|
||||
printf("=========== close Digitizer \n");
|
||||
CAEN_DGTZ_SWStopAcquisition(handle);
|
||||
CAEN_DGTZ_CloseDigitizer(handle);
|
||||
return 0;
|
||||
|
||||
}
|
||||
|
||||
//^======================================
|
||||
int main(int argc, char* argv[]){
|
||||
|
||||
TestDigitizerRaw();
|
||||
|
||||
// CheckBufferSize(5, 4);
|
||||
|
||||
|
@ -238,7 +332,6 @@ int main(int argc, char* argv[]){
|
|||
|
||||
|
||||
|
||||
|
||||
// digi->WriteRegister(DPP::QDC::PreTrigger, 60, -1);
|
||||
|
||||
// digi->WriteRegister(DPP::QDC::TriggerThreshold_sub2, 17, -1);
|
||||
|
|
Loading…
Reference in New Issue
Block a user