Skip to content
Snippets Groups Projects
Commit 4eb2101f authored by Sergei Zharko's avatar Sergei Zharko
Browse files

CA: Introduced partial sorting of hits by stations in L1IODataManager

parent 26317081
No related branches found
No related tags found
1 merge request!1109CA: Partial sorting of hits in L1IODataManager
Pipeline #21424 passed
...@@ -25,7 +25,7 @@ L1IODataManager::L1IODataManager(const L1Parameters* pParameters) : fpParameters ...@@ -25,7 +25,7 @@ L1IODataManager::L1IODataManager(const L1Parameters* pParameters) : fpParameters
bool L1IODataManager::SendInputData(L1Algo* pAlgo) bool L1IODataManager::SendInputData(L1Algo* pAlgo)
{ {
// Set boundary hit indexes // Set boundary hit indexes
SetStartStopHitIndexes(); InitData();
// Check data before input // Check data before input
if (CheckInputData<L1Constants::control::kInputDataQaLevel>()) { if (CheckInputData<L1Constants::control::kInputDataQaLevel>()) {
...@@ -69,26 +69,33 @@ void L1IODataManager::ResetInputData() noexcept ...@@ -69,26 +69,33 @@ void L1IODataManager::ResetInputData() noexcept
// --------------------------------------------------------------------------------------------------------------------- // ---------------------------------------------------------------------------------------------------------------------
// //
void L1IODataManager::SetStartStopHitIndexes() void L1IODataManager::InitData()
{ {
// TODO: probably, it is better to loop before the actual number of stations // Sort hits within stations
for (int iStation = 0; iStation < fpParameters->GetNstationsActive(); ++iStation) { L1Vector<L1Hit> fvHitsNew;
fInputData.fvStartHitIndexes[iStation] = fvHitsNew.reset(fInputData.fvHits.size());
std::lower_bound(fInputData.fvHits.begin(), fInputData.fvHits.end(), iStation,
[](const L1Hit& hit, int ist) { return hit.iSt < ist; }) std::fill(fvHitIndex.begin(), fvHitIndex.end(), 0);
- fInputData.fvHits.begin(); std::fill(fInputData.fvStartHitIndexes.begin(), fInputData.fvStartHitIndexes.end(), 0);
fInputData.fvStopHitIndexes[iStation] = // Count number of hits in each station
std::upper_bound(fInputData.fvHits.begin(), fInputData.fvHits.end(), iStation, for (const auto& hit : fInputData.fvHits) {
[](int ist, const L1Hit& hit) { return hit.iSt > ist; }) ++fInputData.fvStartHitIndexes[hit.iSt + 1];
- fInputData.fvHits.begin(); }
// Account for stations with no hits // Fill bordering numbers of hits for each station
if (fInputData.fvStartHitIndexes[iStation] == fInputData.fvStopHitIndexes[iStation]) { for (int iSt = 0; iSt < fpParameters->GetNstationsActive(); ++iSt) {
fInputData.fvStartHitIndexes[iStation] = 0; fInputData.fvStartHitIndexes[iSt + 1] += fInputData.fvStartHitIndexes[iSt];
fInputData.fvStopHitIndexes[iStation] = 0;
}
} }
// Save ordered hits to new vector
for (const auto& hit : fInputData.fvHits) {
int iSt = hit.iSt;
fvHitsNew[fInputData.fvStartHitIndexes[iSt] + (fvHitIndex[iSt]++)] = hit;
}
// Swap contents of old and new hits vector
std::swap(fvHitsNew, fInputData.fvHits);
} }
// --------------------------------------------------------------------------------------------------------------------- // ---------------------------------------------------------------------------------------------------------------------
......
...@@ -79,8 +79,10 @@ public: ...@@ -79,8 +79,10 @@ public:
void WriteInputData(const std::string& fileName) const; void WriteInputData(const std::string& fileName) const;
private: private:
/// Sets the start and stop indexes vs. station index /// @brief Initializes data object
void SetStartStopHitIndexes(); ///
/// Sorts hits by stations (complexity O(n)) and defines bordering hit index for station
void InitData();
/// Provides quick QA for input data /// Provides quick QA for input data
/// \tparam Level The level of the checks. The values of the parameter: /// \tparam Level The level of the checks. The values of the parameter:
...@@ -100,6 +102,9 @@ private: ...@@ -100,6 +102,9 @@ private:
L1InputData fInputData {}; ///< Object of input data L1InputData fInputData {}; ///< Object of input data
const L1Parameters* fpParameters = nullptr; ///< Pointer to the tracking parameters object const L1Parameters* fpParameters = nullptr; ///< Pointer to the tracking parameters object
/// @brief Utility array for sorting hits by stations
std::array<L1HitIndex_t, L1Constants::size::kMaxNstations + 1> fvHitIndex = {0};
}; };
......
...@@ -19,7 +19,6 @@ L1InputData::L1InputData() {} ...@@ -19,7 +19,6 @@ L1InputData::L1InputData() {}
L1InputData::L1InputData(const L1InputData& other) L1InputData::L1InputData(const L1InputData& other)
: fvHits(other.fvHits) : fvHits(other.fvHits)
, fvStartHitIndexes(other.fvStartHitIndexes) , fvStartHitIndexes(other.fvStartHitIndexes)
, fvStopHitIndexes(other.fvStopHitIndexes)
, fNhitKeys(other.fNhitKeys) , fNhitKeys(other.fNhitKeys)
{ {
} }
......
...@@ -80,11 +80,11 @@ public: ...@@ -80,11 +80,11 @@ public:
/// Gets index of (the last + 1) hit in the sorted hits vector /// Gets index of (the last + 1) hit in the sorted hits vector
/// \param iStation Index of the tracking station in the active stations array /// \param iStation Index of the tracking station in the active stations array
L1HitIndex_t GetStopHitIndex(int iStation) const { return fvStopHitIndexes[iStation]; } L1HitIndex_t GetStopHitIndex(int iStation) const { return fvStartHitIndexes[iStation + 1]; }
/// Gets n hits for the station /// Gets n hits for the station
/// \param iStation Index of the tracking station in the active stations array /// \param iStation Index of the tracking station in the active stations array
L1HitIndex_t GetNhits(int iStation) const { return fvStopHitIndexes[iStation] - fvStartHitIndexes[iStation]; } L1HitIndex_t GetNhits(int iStation) const { return fvStartHitIndexes[iStation + 1] - fvStartHitIndexes[iStation]; }
private: private:
...@@ -97,7 +97,6 @@ private: ...@@ -97,7 +97,6 @@ private:
{ {
ar& fvHits; ar& fvHits;
ar& fvStartHitIndexes; ar& fvStartHitIndexes;
ar& fvStopHitIndexes;
ar& fNhitKeys; ar& fNhitKeys;
} }
...@@ -105,21 +104,13 @@ private: ...@@ -105,21 +104,13 @@ private:
// ** Member variables list ** // ** Member variables list **
// *************************** // ***************************
/// Sorted sample of input hits /// @brief Sample of input hits
/// \note Hits in the vector are sorted as follows. Among two hits
/// the largest has the largest station index in the active
/// stations array. If both indexes were measured withing one
/// station, the largest hit has the largest y component of
/// the coordinates
L1Vector<L1Hit> fvHits = {"L1InputData::fvHits"}; L1Vector<L1Hit> fvHits = {"L1InputData::fvHits"};
/// Index of the first hit in the sorted hits vector for a given station /// @brief Index of the first hit in the sorted hits vector for a given station
std::array<L1HitIndex_t, L1Constants::size::kMaxNstations> fvStartHitIndexes = {0}; std::array<L1HitIndex_t, L1Constants::size::kMaxNstations + 1> fvStartHitIndexes = {0};
/// Index of the last hit in the sorted hits vector for a given station /// @brief Number of hit keys used for rejecting fake STS hits
std::array<L1HitIndex_t, L1Constants::size::kMaxNstations> fvStopHitIndexes = {0};
/// Number of hit keys used for rejecting fake STS hits
int fNhitKeys = -1; int fNhitKeys = -1;
}; };
...@@ -134,7 +125,6 @@ private: ...@@ -134,7 +125,6 @@ private:
{ {
std::swap(fvHits, other.fvHits); std::swap(fvHits, other.fvHits);
std::swap(fvStartHitIndexes, other.fvStartHitIndexes); std::swap(fvStartHitIndexes, other.fvStartHitIndexes);
std::swap(fvStopHitIndexes, other.fvStopHitIndexes);
std::swap(fNhitKeys, other.fNhitKeys); std::swap(fNhitKeys, other.fNhitKeys);
} }
......
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