2023-06-14 15:20:15 -04:00
|
|
|
#include "MultiBuilder.h"
|
|
|
|
|
|
|
|
#include <algorithm>
|
|
|
|
|
2023-06-19 12:48:17 -04:00
|
|
|
MultiBuilder::MultiBuilder(Data ** multiData, std::vector<int> type, std::vector<int> sn) : nData(type.size()){
|
|
|
|
data = multiData;
|
2023-06-14 15:20:15 -04:00
|
|
|
typeList = type;
|
2023-06-15 11:48:18 -04:00
|
|
|
snList = sn;
|
|
|
|
for( int i = 0; i < (int) type.size(); i++) idList.push_back(i);
|
|
|
|
timeWindow = 100;
|
2023-12-11 18:55:12 -05:00
|
|
|
leftOverTime = 100;
|
|
|
|
breakTime = -1;
|
2024-01-11 17:32:58 -05:00
|
|
|
timeJump = 1e8;
|
|
|
|
lastEventTime = 0;
|
2023-06-15 11:48:18 -04:00
|
|
|
ClearEvents();
|
2024-01-11 11:52:40 -05:00
|
|
|
|
|
|
|
// for( int i = 0; i < nData; i++){
|
|
|
|
// printf("sn: %d, numCh : %d \n", snList[i], data[i]->GetNChannel());
|
|
|
|
// }
|
|
|
|
|
2023-06-15 11:48:18 -04:00
|
|
|
}
|
|
|
|
|
2023-10-05 13:13:15 -04:00
|
|
|
MultiBuilder::MultiBuilder(Data * singleData, int type, int sn): nData(1){
|
2023-06-19 12:48:17 -04:00
|
|
|
data = new Data *[1];
|
|
|
|
data[0] = singleData;
|
|
|
|
typeList.push_back(type);
|
2023-10-05 13:13:15 -04:00
|
|
|
snList.push_back(sn);
|
2023-06-19 12:48:17 -04:00
|
|
|
idList.push_back(0);
|
|
|
|
timeWindow = 100;
|
2023-12-11 18:55:12 -05:00
|
|
|
leftOverTime = 100;
|
|
|
|
breakTime = -1;
|
2024-01-11 17:32:58 -05:00
|
|
|
timeJump = 1e8;
|
|
|
|
lastEventTime = 0;
|
|
|
|
|
2023-06-19 12:48:17 -04:00
|
|
|
ClearEvents();
|
|
|
|
}
|
|
|
|
|
2023-06-14 15:20:15 -04:00
|
|
|
MultiBuilder::~MultiBuilder(){
|
|
|
|
}
|
|
|
|
|
|
|
|
void MultiBuilder::ClearEvents(){
|
|
|
|
eventIndex = -1;
|
|
|
|
eventBuilt = 0;
|
|
|
|
totalEventBuilt = 0;
|
|
|
|
for( int i = 0; i < MaxNEvent; i++) events[i].clear();
|
|
|
|
|
|
|
|
for( int i = 0; i < MaxNDigitizer; i++){
|
2023-11-21 17:17:31 -05:00
|
|
|
for( int j = 0; j < MaxNChannels; j++){
|
2023-06-14 15:20:15 -04:00
|
|
|
loopIndex[i][j] = 0;
|
|
|
|
nextIndex[i][j] = -1;
|
|
|
|
chExhaused[i][j] = false;
|
|
|
|
}
|
|
|
|
|
|
|
|
earlistDigi = -1;
|
|
|
|
earlistCh = -1;
|
|
|
|
earlistTime = -1;
|
|
|
|
latestTime = 0;
|
|
|
|
|
|
|
|
nExhaushedCh = 0;
|
|
|
|
}
|
2023-06-20 11:57:39 -04:00
|
|
|
|
2023-06-14 15:20:15 -04:00
|
|
|
}
|
|
|
|
|
2023-06-19 12:48:17 -04:00
|
|
|
void MultiBuilder::PrintStat(){
|
|
|
|
|
|
|
|
printf("Total number of evet built : %ld\n", totalEventBuilt);
|
|
|
|
for( int i = 0; i < nData ; i++){
|
2023-11-21 17:17:31 -05:00
|
|
|
for( int ch = 0; ch < data[i]->GetNChannel() ; ch++){
|
2024-01-18 18:55:37 -05:00
|
|
|
if( nextIndex[i][ch] >= 0 ) printf("%d %3d %2d | %7d (%d)\n", i, snList[i], ch, nextIndex[i][ch], loopIndex[i][ch]);
|
2023-06-19 12:48:17 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2023-11-21 18:03:10 -05:00
|
|
|
void MultiBuilder::PrintAllEvent(){
|
|
|
|
|
|
|
|
printf("Total number of evet built : %ld\n", totalEventBuilt);
|
|
|
|
for( int i = 0; i < totalEventBuilt; i++){
|
|
|
|
printf("%5d ------- size: %ld\n", i, events[i].size());
|
|
|
|
for( int j = 0; j < (int)events[i].size(); j++){
|
|
|
|
events[i][j].Print();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2023-06-14 15:20:15 -04:00
|
|
|
void MultiBuilder::FindEarlistTimeAndCh(bool verbose){
|
|
|
|
|
|
|
|
earlistTime = -1;
|
|
|
|
earlistDigi = -1;
|
|
|
|
earlistCh = -1;
|
|
|
|
|
|
|
|
nExhaushedCh = 0;
|
|
|
|
|
|
|
|
for( int i = 0; i < nData; i++){
|
|
|
|
|
2023-11-21 17:17:31 -05:00
|
|
|
for( int j = 0; j < data[i]->GetNChannel(); j++ ){
|
2023-06-14 15:20:15 -04:00
|
|
|
chExhaused[i][j] = false;
|
|
|
|
}
|
|
|
|
|
2023-11-21 17:17:31 -05:00
|
|
|
for(unsigned int ch = 0; ch < MaxNChannels; ch ++){
|
|
|
|
if( ch >= data[i]->GetNChannel() ) {
|
|
|
|
nExhaushedCh ++;
|
|
|
|
chExhaused[i][ch] = true;
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
if( data[i]->Timestamp[ch][data[i]->DataIndex[ch]] == 0 ||
|
|
|
|
data[i]->DataIndex[ch] == -1 ||
|
|
|
|
loopIndex[i][ch] * MaxNData + nextIndex[i][ch] > data[i]->LoopIndex[ch] * MaxNData + data[i]->DataIndex[ch]) {
|
2023-06-14 15:20:15 -04:00
|
|
|
nExhaushedCh ++;
|
|
|
|
chExhaused[i][ch] = true;
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
if( nextIndex[i][ch] == -1 ) nextIndex[i][ch] = 0;
|
|
|
|
|
|
|
|
unsigned long long time = data[i]->Timestamp[ch][nextIndex[i][ch]];
|
|
|
|
if( time < earlistTime ) {
|
|
|
|
earlistTime = time;
|
|
|
|
earlistDigi = i;
|
|
|
|
earlistCh = ch;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if( verbose ) printf("%s | bd : %d, ch : %d, %llu\n", __func__, earlistDigi, earlistCh, earlistTime);
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2023-06-15 11:48:18 -04:00
|
|
|
void MultiBuilder::FindLatestTimeAndCh(bool verbose){
|
|
|
|
|
|
|
|
latestTime = 0;
|
|
|
|
latestDigi = -1;
|
|
|
|
latestCh = -1;
|
|
|
|
|
|
|
|
nExhaushedCh = 0;
|
|
|
|
|
|
|
|
for( int i = 0; i < nData; i++){
|
|
|
|
|
2023-11-21 17:17:31 -05:00
|
|
|
for( int j = 0; j < data[i]->GetNChannel(); j++ ){
|
2023-06-15 11:48:18 -04:00
|
|
|
chExhaused[i][j] = false;
|
|
|
|
}
|
|
|
|
|
2023-11-21 17:17:31 -05:00
|
|
|
for(unsigned int ch = 0; ch < MaxNChannels; ch ++){
|
2023-06-19 12:48:17 -04:00
|
|
|
// printf(" %d, %d | %d", i, ch, nextIndex[i][ch]);
|
2023-11-21 17:17:31 -05:00
|
|
|
if( nextIndex[i][ch] < 0 || ch >= data[i]->GetNChannel()) {
|
2023-06-15 11:48:18 -04:00
|
|
|
nExhaushedCh ++;
|
|
|
|
chExhaused[i][ch] = true;
|
2023-06-19 12:48:17 -04:00
|
|
|
|
|
|
|
// printf(", exhanshed. %d \n", nExhaushedCh);
|
2023-06-15 11:48:18 -04:00
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
unsigned long long time = data[i]->Timestamp[ch][nextIndex[i][ch]];
|
2023-06-19 12:48:17 -04:00
|
|
|
// printf(", time : %llu\n", time );
|
2023-06-15 11:48:18 -04:00
|
|
|
if( time > latestTime ) {
|
|
|
|
latestTime = time;
|
|
|
|
latestDigi = i;
|
|
|
|
latestCh = ch;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if( verbose ) printf("%s | bd : %d, ch : %d, %llu\n", __func__, latestDigi, latestCh, latestTime);
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2023-12-12 15:35:47 -05:00
|
|
|
void MultiBuilder::FindEarlistTimeAmongLastData(bool verbose){
|
|
|
|
latestTime = -1;
|
|
|
|
latestCh = -1;
|
|
|
|
latestDigi = -1;
|
|
|
|
for( int i = 0; i < nData; i++){
|
|
|
|
for( unsigned ch = 0; ch < data[i]->GetNChannel(); ch++ ){
|
|
|
|
int index = data[i]->DataIndex[ch];
|
|
|
|
if( index == -1 ) continue;
|
|
|
|
if( data[i]->Timestamp[ch][index] < latestTime ) {
|
|
|
|
latestTime = data[i]->Timestamp[ch][index];
|
|
|
|
latestCh = ch;
|
|
|
|
latestDigi = i;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if( verbose ) printf("%s | bd : %d, ch : %d, %lld \n", __func__, latestDigi, latestCh, latestTime);
|
|
|
|
}
|
|
|
|
|
2023-06-15 11:48:18 -04:00
|
|
|
void MultiBuilder::FindLatestTimeOfData(bool verbose){
|
2023-06-14 15:20:15 -04:00
|
|
|
latestTime = 0;
|
2023-06-15 11:48:18 -04:00
|
|
|
latestCh = -1;
|
|
|
|
latestDigi = -1;
|
2023-06-14 15:20:15 -04:00
|
|
|
for( int i = 0; i < nData; i++){
|
2023-11-21 17:17:31 -05:00
|
|
|
for( unsigned ch = 0; ch < data[i]->GetNChannel(); ch++ ){
|
2023-06-14 15:20:15 -04:00
|
|
|
int index = data[i]->DataIndex[ch];
|
|
|
|
if( index == -1 ) continue;
|
|
|
|
if( data[i]->Timestamp[ch][index] > latestTime ) {
|
|
|
|
latestTime = data[i]->Timestamp[ch][index];
|
|
|
|
latestCh = ch;
|
|
|
|
latestDigi = i;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if( verbose ) printf("%s | bd : %d, ch : %d, %lld \n", __func__, latestDigi, latestCh, latestTime);
|
|
|
|
}
|
|
|
|
|
|
|
|
void MultiBuilder::BuildEvents(bool isFinal, bool skipTrace, bool verbose){
|
|
|
|
|
2024-01-11 17:32:58 -05:00
|
|
|
FindEarlistTimeAmongLastData(verbose); // give lastest Time, Ch, and Digi
|
2023-06-14 15:20:15 -04:00
|
|
|
|
2024-01-11 17:32:58 -05:00
|
|
|
FindEarlistTimeAndCh(verbose); //Give the earliest time, ch, digi
|
2023-11-21 17:17:31 -05:00
|
|
|
if( earlistCh == -1 || nExhaushedCh == nData * MaxNChannels) return; /// no data
|
2023-06-14 15:20:15 -04:00
|
|
|
|
|
|
|
eventBuilt = 0;
|
|
|
|
//======= Start building event
|
2023-06-23 13:50:21 -04:00
|
|
|
Hit em;
|
2023-06-14 15:20:15 -04:00
|
|
|
do{
|
|
|
|
|
|
|
|
eventIndex ++;
|
|
|
|
if( eventIndex >= MaxNEvent ) eventIndex = 0;
|
|
|
|
events[eventIndex].clear();
|
|
|
|
|
|
|
|
eventBuilt ++;
|
|
|
|
totalEventBuilt ++;
|
|
|
|
|
|
|
|
em.Clear();
|
|
|
|
|
|
|
|
for( int k = 0; k < nData; k++){
|
2023-06-30 17:32:09 -04:00
|
|
|
int bd = (k + earlistDigi) % nData;
|
|
|
|
|
|
|
|
// printf("##### %d/%d | ", k, nData);
|
|
|
|
// data[k]->PrintAllData(true, 10);
|
|
|
|
|
2024-01-11 11:52:40 -05:00
|
|
|
const int numCh = data[bd]->GetNChannel();
|
2023-11-21 17:17:31 -05:00
|
|
|
|
|
|
|
for( int i = 0; i < numCh; i++){
|
|
|
|
int ch = (i + earlistCh ) % numCh;
|
2024-01-11 11:52:40 -05:00
|
|
|
// printf("ch : %d | exhaused ? %s \n", ch, chExhaused[bd][ch] ? "Yes" : "No");
|
2023-06-30 17:32:09 -04:00
|
|
|
if( chExhaused[bd][ch] ) continue;
|
|
|
|
if( loopIndex[bd][ch] * MaxNData + nextIndex[bd][ch] > data[bd]->LoopIndex[ch] * MaxNData + data[bd]->DataIndex[ch]) {
|
2023-06-14 15:20:15 -04:00
|
|
|
nExhaushedCh ++;
|
2023-06-30 17:32:09 -04:00
|
|
|
chExhaused[bd][ch] = true;
|
2023-06-14 15:20:15 -04:00
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
do {
|
|
|
|
|
2023-06-30 17:32:09 -04:00
|
|
|
unsigned long long time = data[bd]->Timestamp[ch][nextIndex[bd][ch]];
|
2024-01-11 17:32:58 -05:00
|
|
|
//printf("%6ld, sn: %5d, ch: %2d, timestamp : %16llu | earlistTime : %16llu | timeWindow : %u \n", eventIndex, data[bd]->boardSN, ch, time, earlistTime, timeWindow);
|
|
|
|
|
2023-06-14 15:20:15 -04:00
|
|
|
if( time >= earlistTime && (time - earlistTime <= timeWindow) ){
|
2023-06-30 17:32:09 -04:00
|
|
|
em.sn = snList[bd];
|
|
|
|
em.bd = bd;
|
2023-06-14 15:20:15 -04:00
|
|
|
em.ch = ch;
|
2023-06-30 17:32:09 -04:00
|
|
|
em.energy = data[bd]->Energy[ch][nextIndex[bd][ch]];
|
2023-06-14 15:20:15 -04:00
|
|
|
em.timestamp = time;
|
2023-06-30 17:32:09 -04:00
|
|
|
em.fineTime = data[bd]->fineTime[ch][nextIndex[bd][ch]];
|
2023-06-23 13:50:21 -04:00
|
|
|
|
2023-06-30 17:32:09 -04:00
|
|
|
if( !skipTrace ) em.trace = data[bd]->Waveform1[ch][nextIndex[bd][ch]];
|
2023-10-05 13:19:45 -04:00
|
|
|
if( typeList[bd] == DPPType::DPP_PSD_CODE ) em.energy2 = data[bd]->Energy2[ch][nextIndex[bd][ch]];
|
2023-06-14 15:20:15 -04:00
|
|
|
|
|
|
|
events[eventIndex].push_back(em);
|
2023-06-30 17:32:09 -04:00
|
|
|
nextIndex[bd][ch]++;
|
|
|
|
if( nextIndex[bd][ch] >= MaxNData) {
|
|
|
|
loopIndex[bd][ch] ++;
|
|
|
|
nextIndex[bd][ch] = 0;
|
2023-06-14 15:20:15 -04:00
|
|
|
}
|
|
|
|
}else{
|
|
|
|
break;
|
|
|
|
}
|
2023-09-06 09:59:06 -04:00
|
|
|
if( timeWindow <= 0 ) break;
|
2023-06-14 15:20:15 -04:00
|
|
|
}while( true );
|
2023-09-06 09:59:06 -04:00
|
|
|
if( timeWindow <= 0 ) break;
|
2023-06-14 15:20:15 -04:00
|
|
|
}
|
2023-09-06 09:59:06 -04:00
|
|
|
if( timeWindow <= 0 ) break;
|
2023-06-14 15:20:15 -04:00
|
|
|
}
|
|
|
|
|
2024-01-11 17:32:58 -05:00
|
|
|
if( events[eventIndex].size() > 1) {
|
2023-06-30 17:32:09 -04:00
|
|
|
std::sort(events[eventIndex].begin(), events[eventIndex].end(), [](const Hit& a, const Hit& b) {
|
|
|
|
return a.timestamp < b.timestamp;
|
|
|
|
});
|
|
|
|
}
|
2024-01-11 17:32:58 -05:00
|
|
|
|
|
|
|
lastEventTime = events[eventIndex].back().timestamp;
|
2023-06-14 15:20:15 -04:00
|
|
|
|
|
|
|
///Find the next earlist
|
2024-01-11 11:52:40 -05:00
|
|
|
FindEarlistTimeAndCh(false);
|
2023-06-14 15:20:15 -04:00
|
|
|
|
2024-01-11 17:32:58 -05:00
|
|
|
// //if there is a time jump, say, bigger than TimeJump. break
|
|
|
|
if( earlistTime - lastEventTime > timeJump ) {
|
2024-01-11 18:05:18 -05:00
|
|
|
if( verbose ){
|
|
|
|
printf("%6lu, %16llu\n", eventIndex, earlistTime);
|
|
|
|
printf("%5s - %16llu \n", "", lastEventTime);
|
|
|
|
printf("%5s > %16llu \n", "", timeJump);
|
|
|
|
printf("!!!!!!!! Time Jump detected stop event building. stop event buinding and get more data.\n");
|
|
|
|
}
|
2024-01-11 17:32:58 -05:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2023-06-14 15:20:15 -04:00
|
|
|
if( verbose ){
|
|
|
|
printf(">>>>>>>>>>>>>>>>> Event ID : %ld, total built: %ld, multiplicity : %ld\n", eventIndex, totalEventBuilt, events[eventIndex].size());
|
|
|
|
for( int i = 0; i <(int) events[eventIndex].size(); i++){
|
|
|
|
int chxxx = events[eventIndex][i].ch;
|
|
|
|
int bd = events[eventIndex][i].bd;
|
2023-12-11 18:55:12 -05:00
|
|
|
printf("%02d, %02d | %5d | %5d %llu \n", bd, chxxx, nextIndex[bd][chxxx], events[eventIndex][i].energy, events[eventIndex][i].timestamp);
|
2023-06-14 15:20:15 -04:00
|
|
|
}
|
|
|
|
|
2023-11-21 17:17:31 -05:00
|
|
|
if( nExhaushedCh == nData * MaxNChannels ) {
|
2023-06-14 15:20:15 -04:00
|
|
|
printf("######################### no more event to be built\n");
|
|
|
|
break;
|
|
|
|
}
|
2023-06-30 17:32:09 -04:00
|
|
|
printf("----- next bd : %d, ch : %d, next earlist Time : %llu.\n", earlistDigi, earlistCh, earlistTime);
|
2024-01-18 18:55:37 -05:00
|
|
|
//printf("leftOver %llu, breakTime %llu \n", leftOverTime, breakTime);
|
2023-06-14 15:20:15 -04:00
|
|
|
}
|
|
|
|
|
2023-12-11 18:55:12 -05:00
|
|
|
if( !isFinal ){
|
|
|
|
if( latestTime - earlistTime <= leftOverTime){
|
|
|
|
if( verbose ) printf("######################### left over data for next build, latesTime : %llu. | leftOverTime : %llu\n", latestTime, leftOverTime);
|
|
|
|
break;
|
2023-06-14 15:20:15 -04:00
|
|
|
}
|
2023-12-11 18:55:12 -05:00
|
|
|
|
|
|
|
if( earlistTime > breakTime ) {
|
|
|
|
if( verbose ) printf("######################### left over data for next build, earlistTime : %llu. | breakTime : %llu\n", earlistTime, breakTime);
|
|
|
|
break;
|
|
|
|
}
|
2023-06-14 15:20:15 -04:00
|
|
|
}
|
2023-11-21 17:17:31 -05:00
|
|
|
}while(nExhaushedCh < nData * MaxNChannels);
|
2023-06-14 15:20:15 -04:00
|
|
|
|
|
|
|
}
|
2023-06-15 11:48:18 -04:00
|
|
|
|
2023-06-20 11:57:39 -04:00
|
|
|
void MultiBuilder::BuildEventsBackWard(int maxNumEvent, bool verbose){
|
2023-06-15 11:48:18 -04:00
|
|
|
|
2023-11-21 16:50:22 -05:00
|
|
|
//skip trace, and only build for maxNumEvent events max
|
2023-06-19 12:48:17 -04:00
|
|
|
|
|
|
|
// remember the end of DataIndex, prevent over build
|
|
|
|
for( int k = 0; k < nData; k++){
|
2023-12-08 17:03:52 -05:00
|
|
|
for( int i = 0; i < data[k]->GetNChannel(); i++){
|
2023-06-19 12:48:17 -04:00
|
|
|
nextIndex[k][i] = data[k]->DataIndex[i];
|
2023-11-21 17:17:31 -05:00
|
|
|
loopIndex[k][i] = data[k]->LoopIndex[i];
|
2023-06-19 12:48:17 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-06-15 11:48:18 -04:00
|
|
|
FindLatestTimeAndCh(verbose);
|
|
|
|
|
|
|
|
//========== build event
|
|
|
|
eventBuilt = 0;
|
2023-06-23 13:50:21 -04:00
|
|
|
Hit em;
|
2023-06-15 11:48:18 -04:00
|
|
|
do{
|
|
|
|
eventIndex ++;
|
|
|
|
if( eventIndex >= MaxNEvent ) eventIndex = 0;
|
|
|
|
events[eventIndex].clear();
|
|
|
|
|
|
|
|
eventBuilt ++;
|
|
|
|
totalEventBuilt ++;
|
|
|
|
em.Clear();
|
|
|
|
|
|
|
|
for( int k = 0; k < nData; k++){
|
2023-06-30 17:32:09 -04:00
|
|
|
int bd = (k + latestDigi) % nData;
|
|
|
|
|
2023-11-21 17:17:31 -05:00
|
|
|
const int numCh = data[k]->GetNChannel();
|
|
|
|
|
|
|
|
for( int i = 0; i < numCh; i++){
|
|
|
|
int ch = (i + latestCh) % numCh;
|
2023-06-30 17:32:09 -04:00
|
|
|
if( chExhaused[bd][ch] ) continue;
|
|
|
|
//if( nextIndex[bd][ch] <= lastBackWardIndex[bd][ch] || nextIndex[bd][ch] < 0){
|
|
|
|
if( nextIndex[bd][ch] < 0){
|
|
|
|
chExhaused[bd][ch] = true;
|
2023-06-15 11:48:18 -04:00
|
|
|
nExhaushedCh ++;
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
do{
|
|
|
|
|
2023-06-30 17:32:09 -04:00
|
|
|
unsigned long long time = data[bd]->Timestamp[ch][nextIndex[bd][ch]];
|
2023-06-15 11:48:18 -04:00
|
|
|
if( time <= latestTime && (latestTime - time <= timeWindow)){
|
2023-06-30 17:32:09 -04:00
|
|
|
em.sn = snList[bd];
|
|
|
|
em.bd = bd;
|
2023-06-15 11:48:18 -04:00
|
|
|
em.ch = ch;
|
2023-06-30 17:32:09 -04:00
|
|
|
em.energy = data[bd]->Energy[ch][nextIndex[bd][ch]];
|
2023-06-15 11:48:18 -04:00
|
|
|
em.timestamp = time;
|
2023-10-05 13:19:45 -04:00
|
|
|
if( typeList[bd] == DPPType::DPP_PSD_CODE ) em.energy2 = data[bd]->Energy2[ch][nextIndex[bd][ch]];
|
2023-06-15 11:48:18 -04:00
|
|
|
|
|
|
|
events[eventIndex].push_back(em);
|
2023-06-30 17:32:09 -04:00
|
|
|
nextIndex[bd][ch]--;
|
|
|
|
if( nextIndex[bd][ch] < 0 && data[bd]->LoopIndex[ch] > 0 ) nextIndex[bd][ch] = MaxNData - 1;
|
2023-06-15 11:48:18 -04:00
|
|
|
|
|
|
|
}else{
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
if( timeWindow == 0 ) break;
|
|
|
|
}while(true);
|
|
|
|
if( timeWindow == 0 ) break;
|
|
|
|
}
|
|
|
|
if( timeWindow == 0 ) break;
|
|
|
|
}
|
|
|
|
|
2023-06-23 13:50:21 -04:00
|
|
|
std::sort(events[eventIndex].begin(), events[eventIndex].end(), [](const Hit& a, const Hit& b) {
|
2023-06-19 12:48:17 -04:00
|
|
|
return a.timestamp < b.timestamp;
|
|
|
|
});
|
2023-06-15 11:48:18 -04:00
|
|
|
|
|
|
|
FindLatestTimeAndCh(verbose);
|
|
|
|
|
|
|
|
if( verbose ){
|
|
|
|
printf(">>>>>>>>>>>>>>>>> Event ID : %ld, total built: %ld, multiplicity : %ld\n", eventIndex, totalEventBuilt, events[eventIndex].size());
|
|
|
|
for( int i = 0; i <(int) events[eventIndex].size(); i++){
|
|
|
|
int chxxx = events[eventIndex][i].ch;
|
|
|
|
int bd = events[eventIndex][i].bd;
|
|
|
|
printf("%02d, %02d | %d | %5d %llu \n", bd, chxxx, nextIndex[bd][chxxx], events[eventIndex][i].energy, events[eventIndex][i].timestamp);
|
|
|
|
}
|
|
|
|
|
2023-11-21 17:17:31 -05:00
|
|
|
if( nExhaushedCh == nData * MaxNChannels ) {
|
2023-06-15 11:48:18 -04:00
|
|
|
printf("######################### no more event to be built\n");
|
|
|
|
break;
|
|
|
|
}
|
2023-06-30 17:32:09 -04:00
|
|
|
printf("----- next bd: %d, ch : %d, next latest Time : %llu.\n", latestDigi, latestCh, latestTime);
|
2023-06-15 11:48:18 -04:00
|
|
|
|
|
|
|
}
|
|
|
|
|
2023-12-08 17:03:52 -05:00
|
|
|
}while(nExhaushedCh < nData * MaxNChannels && eventBuilt < maxNumEvent);
|
2023-06-15 11:48:18 -04:00
|
|
|
|
2023-06-19 12:48:17 -04:00
|
|
|
// // remember the end of DataIndex, prevent over build
|
|
|
|
// for( int k = 0; k < nData; k++){
|
2023-10-06 16:50:28 -04:00
|
|
|
// for( int i = 0; i < MaxRegChannel; i++){
|
2023-06-19 12:48:17 -04:00
|
|
|
// lastBackWardIndex[k][i] = data[k]->DataIndex[i];
|
|
|
|
// }
|
|
|
|
// }
|
2023-06-15 11:48:18 -04:00
|
|
|
|
|
|
|
}
|