CbmRoot
Loading...
Searching...
No Matches
HitMerger.cxx
Go to the documentation of this file.
1/* Copyright (C) 2024 Facility for Antiproton and Ion Research in Europe, Darmstadt
2 SPDX-License-Identifier: GPL-3.0-only
3 Authors: Dominik Smith [committer], Etienne Bechtel, Florian Uhlig */
4
5#include "HitMerger.h"
6
7namespace cbm::algo::trd
8{
9
10 //_______________________________________________________________________________
11 HitMerger::HitMerger(HitFinderModPar params) : fParams(params) {}
12
13 HitMerger::outputType HitMerger::operator()(std::vector<inputType>& hitsRow1, std::vector<inputType>& hitsRow2)
14 {
16
17 return std::make_pair(std::move(hitsRow1), std::move(hitsRow2));
18 }
19
20
21} // namespace cbm::algo::trd
std::pair< std::vector< inputType >, std::vector< inputType > > outputType
Definition HitMerger.h:22
outputType operator()(std::vector< inputType > &hitsRow1, std::vector< inputType > &hitsRow2)
Definition HitMerger.cxx:13