2023-03-31 16:08:06 -04:00
|
|
|
#define GeneralSort_cxx
|
|
|
|
|
|
|
|
#include <iostream>
|
|
|
|
#include <fstream>
|
|
|
|
#include <string>
|
|
|
|
|
|
|
|
#include "GeneralSort.h"
|
|
|
|
|
|
|
|
#include <TH2.h>
|
|
|
|
#include <TStyle.h>
|
|
|
|
#include <TString.h>
|
2023-04-04 15:30:19 -04:00
|
|
|
#include <TSystem.h>
|
2023-03-31 16:08:06 -04:00
|
|
|
#include <TMath.h>
|
|
|
|
|
2023-04-04 15:30:19 -04:00
|
|
|
|
|
|
|
Long64_t processedEntry = 0;
|
|
|
|
float lastPercentage = 0;
|
|
|
|
|
2023-03-31 16:08:06 -04:00
|
|
|
//^##############################################################
|
|
|
|
Bool_t GeneralSort::Process(Long64_t entry){
|
|
|
|
|
2023-04-04 15:30:19 -04:00
|
|
|
if( entry < 1 ) printf("============================== start processing data\n");
|
2023-03-31 16:08:06 -04:00
|
|
|
|
|
|
|
///initialization
|
2023-04-03 14:42:28 -04:00
|
|
|
for( int i = 0; i < nDetType; i++){
|
|
|
|
for( int j = 0; j < detNum[i]; j++){
|
|
|
|
eE[i][j] = TMath::QuietNaN();
|
|
|
|
eT[i][j] = 0;
|
2023-03-31 16:08:06 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
multi = 0;
|
|
|
|
b_event_ID->GetEntry(entry);
|
|
|
|
b_multi->GetEntry(entry);
|
|
|
|
b_bd->GetEntry(entry);
|
|
|
|
b_ch->GetEntry(entry);
|
|
|
|
b_e->GetEntry(entry);
|
|
|
|
b_e_t->GetEntry(entry);
|
|
|
|
|
|
|
|
for( int i = 0 ; i < multi; i++){
|
|
|
|
int detID = mapping[bd[i]][ch[i]];
|
2023-04-03 14:42:28 -04:00
|
|
|
int detType = FindDetType(detID, detMaxID);
|
2023-03-31 16:08:06 -04:00
|
|
|
|
2023-04-03 14:42:28 -04:00
|
|
|
int low = (i == 0 ? 0 : detMaxID[detType-1]);
|
|
|
|
|
|
|
|
int reducedDetID = detID - low;
|
|
|
|
|
|
|
|
eE[detType][reducedDetID] = e[i] * detParity[detType];
|
|
|
|
eT[detType][reducedDetID] = e_t[i];
|
2023-03-31 16:08:06 -04:00
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
if( isTraceExist && traceMethod >= 0 ){
|
|
|
|
|
2023-04-03 14:42:28 -04:00
|
|
|
b_tl->GetEntry(entry);
|
|
|
|
b_trace->GetEntry(entry);
|
|
|
|
|
2023-03-31 16:08:06 -04:00
|
|
|
int countTrace = 0;
|
|
|
|
|
|
|
|
arr->Clear("C");
|
|
|
|
|
|
|
|
for( int i = 0; i < multi; i++){
|
|
|
|
int detID = mapping[bd[i]][ch[i]];
|
|
|
|
|
2023-04-03 14:42:28 -04:00
|
|
|
int traceLength = tl[i];
|
|
|
|
gTrace = (TGraph*) arr->ConstructedAt(countTrace, "C");
|
|
|
|
gTrace->Clear();
|
|
|
|
gTrace->Set(traceLength);
|
|
|
|
|
|
|
|
gTrace->SetTitle(Form("ev:%llu,nHit:%d,id:%d,len:%d", evID, i, detID, traceLength));
|
|
|
|
countTrace ++;
|
2023-03-31 16:08:06 -04:00
|
|
|
|
2023-04-03 14:42:28 -04:00
|
|
|
for( int k = 0 ; k < traceLength; k++){
|
|
|
|
gTrace->SetPoint(k, k, trace[i][k]);
|
|
|
|
}
|
2023-03-31 16:08:06 -04:00
|
|
|
|
2023-04-03 14:42:28 -04:00
|
|
|
}
|
2023-03-31 16:08:06 -04:00
|
|
|
|
2023-04-03 14:42:28 -04:00
|
|
|
}
|
2023-03-31 16:08:06 -04:00
|
|
|
|
2023-04-04 15:30:19 -04:00
|
|
|
if( !isParallel){
|
|
|
|
processedEntry ++;
|
|
|
|
float percentage = processedEntry*100/NumEntries;
|
|
|
|
if( percentage > lastPercentage + 1.0) {
|
|
|
|
printf("Processed : %lld, %.0f%% \n\033[A\r", entry, percentage);
|
|
|
|
lastPercentage = percentage;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-03-31 16:08:06 -04:00
|
|
|
newTree->Fill();
|
|
|
|
|
|
|
|
return kTRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
//^##############################################################
|
|
|
|
void GeneralSort::Terminate(){
|
|
|
|
|
|
|
|
printf("========================= %s\n", __func__);
|
|
|
|
|
2023-04-03 14:42:28 -04:00
|
|
|
DecodeOption();
|
|
|
|
|
|
|
|
if( !isParallel){
|
2023-04-04 14:47:44 -04:00
|
|
|
printf("%s::SaveTree %p, %p\n", __func__, saveFile, newTree);
|
2023-04-03 14:42:28 -04:00
|
|
|
saveFile->cd();
|
|
|
|
newTree->Write();
|
|
|
|
saveFile->Close();
|
|
|
|
}
|
|
|
|
|
2023-04-04 14:47:44 -04:00
|
|
|
printf("=======================================================\n");
|
2023-03-31 16:08:06 -04:00
|
|
|
//get entries
|
|
|
|
saveFile = TFile::Open(saveFileName);
|
|
|
|
if( saveFile->IsOpen() ){
|
|
|
|
TTree * tree = (TTree*) saveFile->FindObjectAny("gen_tree");
|
|
|
|
int validCount = tree->GetEntries();
|
|
|
|
|
|
|
|
saveFile->Close();
|
|
|
|
|
|
|
|
printf("=======================================================\n");
|
|
|
|
PrintTraceMethod();
|
|
|
|
printf("----- saved as \033[1;33m%s\033[0m. valid event: %d\n", saveFileName.Data() , validCount);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
//^##############################################################
|
|
|
|
void GeneralSort::Begin(TTree * tree){
|
|
|
|
|
|
|
|
printf( "=================================================================\n");
|
|
|
|
printf( "===================== SOLARIS GeneralSort.C =================\n");
|
|
|
|
printf( "=================================================================\n");
|
|
|
|
|
2023-04-03 14:42:28 -04:00
|
|
|
PrintMapping(mapping, detTypeName, detMaxID);
|
|
|
|
|
2023-04-04 15:30:19 -04:00
|
|
|
DecodeOption();
|
|
|
|
if(!isParallel) tree->GetEntriesFast();
|
2023-03-31 16:08:06 -04:00
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
void GeneralSort::SlaveBegin(TTree * /*tree*/){
|
|
|
|
printf("%s\n", __func__);
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
void GeneralSort::SlaveTerminate(){
|
2023-04-03 14:42:28 -04:00
|
|
|
|
2023-04-04 15:30:19 -04:00
|
|
|
printf("\n%s\n", __func__);
|
2023-04-03 14:42:28 -04:00
|
|
|
|
|
|
|
if( isParallel){
|
2023-04-04 14:47:44 -04:00
|
|
|
printf("%s::SaveTree\n", __func__);
|
2023-04-03 14:42:28 -04:00
|
|
|
saveFile->cd();
|
|
|
|
newTree->Write();
|
|
|
|
fOutput->Add(proofFile);
|
|
|
|
saveFile->Close();
|
|
|
|
}
|
|
|
|
|
2023-03-31 16:08:06 -04:00
|
|
|
}
|