Skip to content
Snippets Groups Projects
Commit d76968bd authored by Sergey Gorbunov's avatar Sergey Gorbunov
Browse files

Ca: search for sorted data chunks in TOF hits

parent 8419a3fe
No related branches found
No related tags found
1 merge request!1434Ca: search for sorted data chunks in TOF hits
Pipeline #25020 failed
...@@ -116,12 +116,12 @@ void TrackingChain::ReadHits(PartitionedSpan<const ca::HitTypes_t::at<DetID>> hi ...@@ -116,12 +116,12 @@ void TrackingChain::ReadHits(PartitionedSpan<const ca::HitTypes_t::at<DetID>> hi
ca::HitKeyIndex_t firstHitKey = fNofHitKeys; ca::HitKeyIndex_t firstHitKey = fNofHitKeys;
int64_t dataStreamDet = static_cast<int64_t>(DetID) << 60; // detector part of the data stream int64_t dataStreamDet = static_cast<int64_t>(DetID) << 60; // detector part of the data stream
int64_t dataStream = 0;
for (size_t iPartition = 0; iPartition < hits.NPartitions(); ++iPartition) { for (size_t iPartition = 0; iPartition < hits.NPartitions(); ++iPartition, ++dataStream) {
const auto& [vHits, extHitAddress] = hits.Partition(iPartition); const auto& [vHits, extHitAddress] = hits.Partition(iPartition);
// ---- Define data stream and station index // ---- Define data stream and station index
int64_t dataStream = dataStreamDet | extHitAddress; //int64_t dataStream = dataStreamDet | extHitAddress;
int iStLocal = -1; int iStLocal = -1;
// FIXME: This definition of the station index works only for STS, and there is no any guaranty, that it will // FIXME: This definition of the station index works only for STS, and there is no any guaranty, that it will
// work for other mCBM setups. // work for other mCBM setups.
if constexpr (IsSts) { iStLocal = (extHitAddress >> 4) & 0xF; } if constexpr (IsSts) { iStLocal = (extHitAddress >> 4) & 0xF; }
...@@ -133,7 +133,7 @@ void TrackingChain::ReadHits(PartitionedSpan<const ca::HitTypes_t::at<DetID>> hi ...@@ -133,7 +133,7 @@ void TrackingChain::ReadHits(PartitionedSpan<const ca::HitTypes_t::at<DetID>> hi
int iStActive = (iStLocal != -1) ? fCaFramework.GetParameters().GetStationIndexActive(iStLocal, DetID) : -1; int iStActive = (iStLocal != -1) ? fCaFramework.GetParameters().GetStationIndexActive(iStLocal, DetID) : -1;
size_t iOffset = hits.Offsets()[iPartition]; size_t iOffset = hits.Offsets()[iPartition];
if (iStActive < 0) { continue; } if (iStActive < 0) { continue; }
double lastTime = -1e9;
for (size_t iPartHit = 0; iPartHit < vHits.size(); ++iPartHit) { for (size_t iPartHit = 0; iPartHit < vHits.size(); ++iPartHit) {
const auto& hit = vHits[iPartHit]; const auto& hit = vHits[iPartHit];
int iHitExt = iOffset + iPartHit; int iHitExt = iOffset + iPartHit;
...@@ -162,15 +162,12 @@ void TrackingChain::ReadHits(PartitionedSpan<const ca::HitTypes_t::at<DetID>> hi ...@@ -162,15 +162,12 @@ void TrackingChain::ReadHits(PartitionedSpan<const ca::HitTypes_t::at<DetID>> hi
caHit.SetStation(iStActive); caHit.SetStation(iStActive);
caHit.SetId(fCaDataManager.GetNofHits()); caHit.SetId(fCaDataManager.GetNofHits());
if (caHit.Check()) { if (caHit.Check()) {
//L_(info) << caHit.ToString(); if ((caHit.T() < lastTime - 1000.) && (dataStream < 100000)) { dataStream++; }
if constexpr (IsSts) { lastTime = caHit.T();
if (fNofHitKeys <= caHit.FrontKey()) { fNofHitKeys = caHit.FrontKey() + 1; } if (!IsTof) { dataStream = extHitAddress; }
if (fNofHitKeys <= caHit.BackKey()) { fNofHitKeys = caHit.BackKey() + 1; } fCaDataManager.PushBackHit(caHit, dataStreamDet | dataStream);
} if (fNofHitKeys <= caHit.FrontKey()) { fNofHitKeys = caHit.FrontKey() + 1; }
else { if (fNofHitKeys <= caHit.BackKey()) { fNofHitKeys = caHit.BackKey() + 1; }
if (fNofHitKeys <= caHit.FrontKey()) { fNofHitKeys = caHit.FrontKey() + 1; }
}
fCaDataManager.PushBackHit(caHit, dataStream);
} }
else { else {
if constexpr (IsMvd) { fCaMonitorData.IncrementCounter(ca::ECounter::UndefinedMvdHit); } if constexpr (IsMvd) { fCaMonitorData.IncrementCounter(ca::ECounter::UndefinedMvdHit); }
......
...@@ -146,7 +146,6 @@ void TrackFinder::FindTracks() ...@@ -146,7 +146,6 @@ void TrackFinder::FindTracks()
fscal minTimeAfterHit = std::numeric_limits<fscal>::max(); fscal minTimeAfterHit = std::numeric_limits<fscal>::max();
// loop in the reverse order to fill CaHitTimeInfo::fMinTimeAfterHit fields // loop in the reverse order to fill CaHitTimeInfo::fMinTimeAfterHit fields
//LOG(warning) << "\n\n stream " << iStream << " hits " << nStreamHits << "\n\n";
for (int ih = nStreamHits - 1; ih >= 0; --ih) { for (int ih = nStreamHits - 1; ih >= 0; --ih) {
ca::HitIndex_t caHitId = frAlgo.fInputData.GetStreamStartIndex(iStream) + ih; ca::HitIndex_t caHitId = frAlgo.fInputData.GetStreamStartIndex(iStream) + ih;
const ca::Hit& h = frAlgo.fInputData.GetHit(caHitId); const ca::Hit& h = frAlgo.fInputData.GetHit(caHitId);
...@@ -154,7 +153,26 @@ void TrackFinder::FindTracks() ...@@ -154,7 +153,26 @@ void TrackFinder::FindTracks()
CaHitTimeInfo& info = frAlgo.fHitTimeInfo[caHitId]; CaHitTimeInfo& info = frAlgo.fHitTimeInfo[caHitId];
if (minTimeAfterHit > info.fEventTimeMin) { minTimeAfterHit = info.fEventTimeMin; } if (minTimeAfterHit > info.fEventTimeMin) { minTimeAfterHit = info.fEventTimeMin; }
info.fMinTimeAfterHit = minTimeAfterHit; info.fMinTimeAfterHit = minTimeAfterHit;
//if (h.Station() > 1) { LOG(warning) << " hit time " << info.fEventTimeMin << " min time after hit " << info.fMinTimeAfterHit; } }
if (0) {
LOG(warning) << "\n\n stream " << iStream << " hits " << nStreamHits << "\n\n";
for (int ih = 0; ih < nStreamHits; ++ih) {
ca::HitIndex_t caHitId = frAlgo.fInputData.GetStreamStartIndex(iStream) + ih;
const ca::Hit& h = frAlgo.fInputData.GetHit(caHitId);
if (frAlgo.fvHitKeyFlags[h.FrontKey()] || frAlgo.fvHitKeyFlags[h.BackKey()]) {
continue;
} // the hit is skipped
CaHitTimeInfo& info = frAlgo.fHitTimeInfo[caHitId];
if (h.Station() == 2) {
static int tmp = 0;
tmp++;
if (tmp < 10000) {
LOG(warning) << " hit sta " << h.Station() << " stream " << iStream << " time " << info.fEventTimeMin
<< " min time after hit " << info.fMinTimeAfterHit;
}
}
}
} }
} }
......
This diff is collapsed.
mcbm_beam_2022_05_23_nickel_STS_AND_TOF.ca.par mcbm_beam_2022_05_23_nickel_STS_TOF.ca.par
\ No newline at end of file \ No newline at end of file
File added
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