2022-12-02 17:33:02 -05:00
|
|
|
#include <cstdlib>
|
|
|
|
#include <string>
|
|
|
|
#include <vector>
|
|
|
|
#include <unistd.h>
|
2023-01-09 18:22:33 -05:00
|
|
|
#include <time.h> // time in nano-sec
|
2023-01-18 18:10:31 -05:00
|
|
|
#include <iostream>
|
|
|
|
|
|
|
|
#include <thread>
|
|
|
|
#include <mutex>
|
2022-12-02 17:33:02 -05:00
|
|
|
|
|
|
|
#include "ClassDigitizer2Gen.h"
|
2023-01-18 18:10:31 -05:00
|
|
|
#include "influxdb.h"
|
|
|
|
|
|
|
|
|
|
|
|
#define maxRead 400
|
|
|
|
|
|
|
|
std::mutex digiMTX;
|
|
|
|
Digitizer2Gen * digi = new Digitizer2Gen();
|
|
|
|
InfluxDB * influx = new InfluxDB("https://fsunuc.physics.fsu.edu/influx/", false);
|
|
|
|
|
|
|
|
unsigned int readCount = 0;
|
|
|
|
|
|
|
|
timespec ta, tb;
|
|
|
|
static void ReadDataLoop(){
|
|
|
|
clock_gettime(CLOCK_REALTIME, &ta);
|
|
|
|
//while(digi->IsAcqOn() && readCount < maxRead){
|
|
|
|
while(true){
|
|
|
|
digiMTX.lock();
|
|
|
|
int ret = digi->ReadData();
|
|
|
|
digiMTX.unlock();
|
|
|
|
|
|
|
|
if( ret == CAEN_FELib_Success){
|
|
|
|
digi->SaveDataToFile();
|
|
|
|
}else if(ret == CAEN_FELib_Stop){
|
|
|
|
digi->ErrorMsg("No more data");
|
|
|
|
break;
|
|
|
|
}else{
|
|
|
|
digi->ErrorMsg("ReadData()");
|
|
|
|
//digiMTX.unlock();
|
|
|
|
//break;
|
|
|
|
}
|
|
|
|
if( readCount % 100 == 0 ) {
|
|
|
|
clock_gettime(CLOCK_REALTIME, &tb);
|
|
|
|
printf("%4d, duration : %.0f\n", readCount, tb.tv_nsec-ta.tv_nsec + tb.tv_sec*1e+9 - ta.tv_sec*1e+9);
|
|
|
|
ta = tb;
|
|
|
|
}
|
|
|
|
readCount++;
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
char cmdStr[100];
|
|
|
|
|
|
|
|
static void StatLoop(){
|
|
|
|
//while(digi->IsAcqOn() && readCount < maxRead){
|
|
|
|
while(digi->IsAcqOn()){
|
|
|
|
digiMTX.lock();
|
|
|
|
|
|
|
|
digi->ReadStat();
|
|
|
|
for(int i = 0; i < 64; i++){
|
|
|
|
sprintf(cmdStr, "/ch/%d/par/SelfTrgRate", i);
|
|
|
|
std::string haha = digi->ReadValue( cmdStr, false);
|
|
|
|
influx->AddDataPoint("Rate,Ch=" + std::to_string(i) + " value=" + haha);
|
|
|
|
}
|
|
|
|
//digi->ReadValue("/ch/4/par/ChRealtimeMonitor", true);
|
|
|
|
//digi->ReadValue("/ch/4/par/ChDeadtimeMonitor", true);
|
|
|
|
//digi->ReadValue("/ch/4/par/ChTriggerCnt", true);
|
|
|
|
//digi->ReadValue("/ch/4/par/ChSavedEventCnt", true);
|
|
|
|
//digi->ReadValue("/ch/4/par/ChWaveCnt", true);
|
|
|
|
digiMTX.unlock();
|
|
|
|
|
|
|
|
|
|
|
|
influx->WriteData("testing");
|
|
|
|
influx->ClearDataPointsBuffer();
|
|
|
|
digi->PrintStat();
|
|
|
|
usleep(500*1000); // every 500 msec
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2022-12-02 17:33:02 -05:00
|
|
|
|
|
|
|
int main(int argc, char* argv[]){
|
|
|
|
|
|
|
|
printf("##########################################\n");
|
|
|
|
printf("\t CAEN firmware DPP-PHA testing \n");
|
|
|
|
printf("##########################################\n");
|
|
|
|
|
2023-01-11 17:53:37 -05:00
|
|
|
remove("haha_000.sol");
|
|
|
|
|
2022-12-02 17:33:02 -05:00
|
|
|
const char * url = "dig2://192.168.0.100/";
|
|
|
|
|
|
|
|
|
|
|
|
digi->OpenDigitizer(url);
|
2023-01-13 16:12:43 -05:00
|
|
|
digi->ProgramPHA(false);
|
2022-12-02 17:33:02 -05:00
|
|
|
|
|
|
|
//printf("%s \n", digi->ReadValue("/ch/0/par/ChRealtimeMonitor").c_str());
|
|
|
|
//printf("%s \n", digi->ReadValue("/ch/0/par/Energy_Nbit").c_str());
|
|
|
|
//printf("%s \n", digi->ReadValue("/par/MaxRawDataSize").c_str());
|
|
|
|
|
|
|
|
|
|
|
|
/*///======================= Play with handle
|
|
|
|
uint64_t parHandle;
|
|
|
|
|
|
|
|
parHandle = digi->GetHandle("/ch/0/par/ChRealtimeMonitor"); printf("%lu|%lX\n", parHandle, parHandle);
|
|
|
|
parHandle = digi->GetHandle("/ch/1/par/ChRealtimeMonitor"); printf("%lu|%lX\n", parHandle, parHandle);
|
|
|
|
|
|
|
|
|
|
|
|
printf("%s\n", digi->GetPath(parHandle).c_str());
|
|
|
|
|
|
|
|
|
|
|
|
parHandle = digi->GetParentHandle(parHandle); printf("%lu|%lX\n", parHandle, parHandle);
|
|
|
|
printf("%s\n", digi->GetPath(parHandle).c_str());
|
|
|
|
|
|
|
|
parHandle = digi->GetParentHandle(parHandle); printf("%lu|%lX\n", parHandle, parHandle);
|
|
|
|
printf("%s\n", digi->GetPath(parHandle).c_str());
|
|
|
|
|
|
|
|
parHandle = digi->GetParentHandle(parHandle); printf("%lu|%lX\n", parHandle, parHandle);
|
|
|
|
printf("%s\n", digi->GetPath(parHandle).c_str());
|
|
|
|
|
|
|
|
parHandle = digi->GetParentHandle(parHandle); printf("%lu|%lX\n", parHandle, parHandle);
|
|
|
|
printf("%s\n", digi->GetPath(parHandle).c_str());
|
|
|
|
*/
|
|
|
|
|
2023-01-13 17:35:37 -05:00
|
|
|
digi->ReadDigitizerSettings();
|
2022-12-02 17:33:02 -05:00
|
|
|
|
2023-01-11 16:14:12 -05:00
|
|
|
digi->SetPHADataFormat(0);
|
2023-01-10 16:58:35 -05:00
|
|
|
|
2023-01-13 16:12:43 -05:00
|
|
|
//printf("0x%X \n", atoi(digi->ReadValue("/par/AcquisitionStatus").c_str()) & 0x3F );
|
|
|
|
|
2023-01-10 16:58:35 -05:00
|
|
|
digi->OpenOutFile("haha");
|
|
|
|
|
2023-01-18 18:10:31 -05:00
|
|
|
|
2022-12-02 17:33:02 -05:00
|
|
|
digi->StartACQ();
|
2023-01-09 18:22:33 -05:00
|
|
|
|
|
|
|
timespec t0, t1;
|
|
|
|
clock_gettime(CLOCK_REALTIME, &t0);
|
2023-01-13 17:35:37 -05:00
|
|
|
|
2023-01-18 18:10:31 -05:00
|
|
|
std::thread th1 (ReadDataLoop);
|
|
|
|
std::thread th2 (StatLoop);
|
2023-01-13 16:12:43 -05:00
|
|
|
|
2023-01-18 18:10:31 -05:00
|
|
|
char c;
|
|
|
|
printf("Press q for stop.");
|
|
|
|
do{
|
|
|
|
c = getchar();
|
|
|
|
}while( c != 'q');
|
2023-01-09 18:22:33 -05:00
|
|
|
|
2023-01-18 18:10:31 -05:00
|
|
|
digiMTX.lock();
|
2022-12-02 17:33:02 -05:00
|
|
|
digi->StopACQ();
|
2023-01-18 18:10:31 -05:00
|
|
|
digiMTX.unlock();
|
|
|
|
|
|
|
|
th1.join();
|
|
|
|
th2.join();
|
2023-01-13 17:35:37 -05:00
|
|
|
|
2023-01-18 18:10:31 -05:00
|
|
|
clock_gettime(CLOCK_REALTIME, &t1);
|
|
|
|
printf("t1-t0 : %.0f\n", t1.tv_nsec-t0.tv_nsec + t1.tv_sec*1e+9 - t0.tv_sec*1e+9);
|
2023-01-10 16:58:35 -05:00
|
|
|
|
2023-01-18 18:10:31 -05:00
|
|
|
digi->CloseOutFile();
|
2022-12-02 17:33:02 -05:00
|
|
|
digi->CloseDigitizer();
|
|
|
|
|
|
|
|
delete digi;
|
2023-01-18 18:10:31 -05:00
|
|
|
delete influx;
|
2022-12-02 17:33:02 -05:00
|
|
|
|
|
|
|
}
|