Skip to content
Snippets Groups Projects
Commit 915af2f7 authored by Dominik Smith's avatar Dominik Smith Committed by Florian Uhlig
Browse files

Refactored HitFinderTof. Two micro-optimizations of CbmTaskTofHitFinder which...

Refactored HitFinderTof. Two micro-optimizations of CbmTaskTofHitFinder which save about 10 percent execution time in total.
parent aa3fdbee
No related branches found
No related tags found
1 merge request!955New TOF hitfinder class HitFinderTof in Algo namespace and corresponding CbmTaskTofHitFinder.
Pipeline #20845 passed
...@@ -16,57 +16,15 @@ namespace cbm::algo ...@@ -16,57 +16,15 @@ namespace cbm::algo
HitFinderTof::resultType HitFinderTof::operator()(std::vector<CbmTofDigi> digisIn, HitFinderTof::resultType HitFinderTof::operator()(std::vector<CbmTofDigi> digisIn,
const std::vector<int32_t>& digiIndexIn) const std::vector<int32_t>& digiIndexIn)
{ {
// Intermediate storage variables inputType input = calibrateDigis(digisIn, digiIndexIn);
std::vector<std::vector<CbmTofDigi*>> digisExp; //[nbCh][nDigis] return buildClusters(input);
std::vector<std::vector<int32_t>> digisInd; //[nbCh][nDigis] }
digisExp.resize(fParams.fChanPar.size());
digisInd.resize(fParams.fChanPar.size());
{ // digi calibration
const int32_t numClWalkBinX = fParams.numClWalkBinX;
const double TOTMax = fParams.TOTMax;
const double TOTMin = fParams.TOTMin;
for (size_t iDigi = 0; iDigi < digisIn.size(); iDigi++) {
CbmTofDigi* pDigi = &digisIn[iDigi];
assert(pDigi);
// These are doubles in the digi class
const double chan = pDigi->GetChannel();
const double side = pDigi->GetSide();
const double charge = pDigi->GetTot() * fParams.fChanPar[chan].fvCPTotGain[side]; // calibrate Digi ToT
const double time = pDigi->GetTime() - fParams.fChanPar[chan].fvCPTOff[side]; // calibrate Digi Time
digisExp[chan].push_back(pDigi);
digisInd[chan].push_back(digiIndexIn[iDigi]);
pDigi->SetTot(charge);
{ // walk correction
const double totBinSize = (TOTMax - TOTMin) / 2. / numClWalkBinX;
int32_t iWx = (int32_t)((charge - TOTMin / 2.) / totBinSize);
if (0 > iWx) iWx = 0;
if (iWx > (numClWalkBinX - 1)) iWx = numClWalkBinX - 1;
std::vector<double>& cpWalk = fParams.fChanPar[chan].fvCPWalk[side];
double dWT = cpWalk[iWx];
const double dDTot = (charge - TOTMin / 2.) / totBinSize - (double) iWx - 0.5;
if (dDTot > 0) { HitFinderTof::resultType HitFinderTof::buildClusters(inputType& input)
if (iWx < numClWalkBinX - 1) { // linear interpolation to next bin {
dWT += dDTot * (cpWalk[iWx + 1] - cpWalk[iWx]); // Intermediate storage variables
} std::vector<std::vector<CbmTofDigi*>>& digisExp = input.first; //[nbCh][nDigis]
} std::vector<std::vector<int32_t>>& digisInd = input.second; //[nbCh][nDigis]
else {
if (0 < iWx) { // linear interpolation to next bin
dWT -= dDTot * (cpWalk[iWx - 1] - cpWalk[iWx]);
}
}
pDigi->SetTime(time - dWT);
}
}
} // digi calibration
// Hit variables // Hit variables
TofCluster cluster; TofCluster cluster;
...@@ -173,7 +131,61 @@ namespace cbm::algo ...@@ -173,7 +131,61 @@ namespace cbm::algo
cluster.finalize(*trafoCell, iTrafoCell, fParams); cluster.finalize(*trafoCell, iTrafoCell, fParams);
clustersOut.push_back(cluster); clustersOut.push_back(cluster);
} }
return clustersOut; return clustersOut;
} }
HitFinderTof::inputType HitFinderTof::calibrateDigis(std::vector<CbmTofDigi>& digisIn,
const std::vector<int32_t>& digiIndexIn)
{
inputType result;
std::vector<std::vector<CbmTofDigi*>>& digisExp = result.first; //[nbCh][nDigis]
std::vector<std::vector<int32_t>>& digisInd = result.second; //[nbCh][nDigis]
digisExp.resize(fParams.fChanPar.size());
digisInd.resize(fParams.fChanPar.size());
const int32_t numClWalkBinX = fParams.numClWalkBinX;
const double TOTMax = fParams.TOTMax;
const double TOTMin = fParams.TOTMin;
for (size_t iDigi = 0; iDigi < digisIn.size(); iDigi++) {
CbmTofDigi* pDigi = &digisIn[iDigi];
assert(pDigi);
// These are doubles in the digi class
const double chan = pDigi->GetChannel();
const double side = pDigi->GetSide();
const double charge = pDigi->GetTot() * fParams.fChanPar[chan].fvCPTotGain[side]; // calibrate Digi ToT
const double time = pDigi->GetTime() - fParams.fChanPar[chan].fvCPTOff[side]; // calibrate Digi Time
digisExp[chan].push_back(pDigi);
digisInd[chan].push_back(digiIndexIn[iDigi]);
pDigi->SetTot(charge);
{ // walk correction
const double totBinSize = (TOTMax - TOTMin) / 2. / numClWalkBinX;
int32_t iWx = (int32_t)((charge - TOTMin / 2.) / totBinSize);
if (0 > iWx) iWx = 0;
if (iWx > (numClWalkBinX - 1)) iWx = numClWalkBinX - 1;
std::vector<double>& cpWalk = fParams.fChanPar[chan].fvCPWalk[side];
double dWT = cpWalk[iWx];
const double dDTot = (charge - TOTMin / 2.) / totBinSize - (double) iWx - 0.5;
if (dDTot > 0) {
if (iWx < numClWalkBinX - 1) { // linear interpolation to next bin
dWT += dDTot * (cpWalk[iWx + 1] - cpWalk[iWx]);
}
}
else {
if (0 < iWx) { // linear interpolation to next bin
dWT -= dDTot * (cpWalk[iWx - 1] - cpWalk[iWx]);
}
}
pDigi->SetTime(time - dWT);
}
}
return result;
}
} /* namespace cbm::algo */ } /* namespace cbm::algo */
...@@ -2,6 +2,15 @@ ...@@ -2,6 +2,15 @@
SPDX-License-Identifier: GPL-3.0-only SPDX-License-Identifier: GPL-3.0-only
Authors: Dominik Smith [committer], Pierre-Alain Loizeau */ Authors: Dominik Smith [committer], Pierre-Alain Loizeau */
/*
This algo was based on CbmTofSimpClusterizer, which can be used only for simulation of the main setup and
is as the name implies a simplified solution.
A later step will be the replacement with a version based on CbmTofEventClusterizer, which is the version
currently maintained, based on what we learned from real data at mCBM.
This step will be required to apply the algo to real/online data and to prepare
our simulations for first CBM beam
*/
#ifndef HITFINDERTOF_H #ifndef HITFINDERTOF_H
#define HITFINDERTOF_H #define HITFINDERTOF_H
...@@ -132,6 +141,7 @@ namespace cbm::algo ...@@ -132,6 +141,7 @@ namespace cbm::algo
class HitFinderTof { class HitFinderTof {
public: public:
typedef std::vector<TofCluster> resultType; typedef std::vector<TofCluster> resultType;
typedef std::pair<std::vector<std::vector<CbmTofDigi*>>, std::vector<std::vector<int32_t>>> inputType;
/** /**
** @brief Constructor. ** @brief Constructor.
...@@ -156,6 +166,9 @@ namespace cbm::algo ...@@ -156,6 +166,9 @@ namespace cbm::algo
private: private:
HitFinderTofRpcPar fParams = {}; ///< Parameter container HitFinderTofRpcPar fParams = {}; ///< Parameter container
inputType calibrateDigis(std::vector<CbmTofDigi>& digisIn, const std::vector<int32_t>& digiIndexIn);
resultType buildClusters(inputType& input);
int32_t numSameSide; // Digis quality int32_t numSameSide; // Digis quality
}; };
......
...@@ -397,8 +397,7 @@ pair<int32_t, int32_t> CbmTaskTofHitFinder::BuildClusters(CbmEvent* event) ...@@ -397,8 +397,7 @@ pair<int32_t, int32_t> CbmTaskTofHitFinder::BuildClusters(CbmEvent* event)
// Loop over the digis array and store the Digis in separate vectors for each RPC modules // Loop over the digis array and store the Digis in separate vectors for each RPC modules
for (int32_t iDigi = 0; iDigi < nDigis; iDigi++) { for (int32_t iDigi = 0; iDigi < nDigis; iDigi++) {
const uint32_t digiIndex = (event ? event->GetIndex(ECbmDataType::kTofDigi, iDigi) : iDigi); const uint32_t digiIndex = (event ? event->GetIndex(ECbmDataType::kTofDigi, iDigi) : iDigi);
assert(fDigiMan->Get<CbmTofDigi>(digiIndex)); const CbmTofDigi* pDigi = fDigiMan->Get<CbmTofDigi>(digiIndex);
CbmTofDigi* pDigi = new CbmTofDigi(*(fDigiMan->Get<CbmTofDigi>(digiIndex)));
assert(pDigi); assert(pDigi);
// These are doubles in the digi class // These are doubles in the digi class
...@@ -434,12 +433,11 @@ pair<int32_t, int32_t> CbmTaskTofHitFinder::BuildClusters(CbmEvent* event) ...@@ -434,12 +433,11 @@ pair<int32_t, int32_t> CbmTaskTofHitFinder::BuildClusters(CbmEvent* event)
CbmTofHit(cluster.detId, hitpos, hiterr, nHits, cluster.weightedTime, cluster.weightedTimeErr, 0, 0); CbmTofHit(cluster.detId, hitpos, hiterr, nHits, cluster.weightedTime, cluster.weightedTimeErr, 0, 0);
nHits++; nHits++;
if (event) event->AddData(ECbmDataType::kTofHit, hitIndex); if (event) event->AddData(ECbmDataType::kTofHit, hitIndex);
CbmMatch* digiMatch = new CbmMatch();
CbmMatch* digiMatch = new ((*fTofDigiMatchColl)[hitIndex]) CbmMatch();
for (uint32_t i = 0; i < cluster.vDigiIndRef.size(); i++) { for (uint32_t i = 0; i < cluster.vDigiIndRef.size(); i++) {
digiMatch->AddLink(CbmLink(0., cluster.vDigiIndRef.at(i), iEventNr, iInputNr)); digiMatch->AddLink(CbmLink(0., cluster.vDigiIndRef.at(i), iEventNr, iInputNr));
} }
new ((*fTofDigiMatchColl)[hitIndex]) CbmMatch(*digiMatch);
delete digiMatch;
} }
digiExp.clear(); digiExp.clear();
digiInd.clear(); digiInd.clear();
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment