EICrecon
JANA based reconstruction for the EPIC detector
Loading...
Searching...
No Matches
PrimaryVertices.h
Go to the documentation of this file.
1// SPDX-License-Identifier: LGPL-3.0-or-later
2// Copyright (C) 2024 Daniel Brandenburg, Xin Dong
3
4#pragma once
5
6#include <algorithms/algorithm.h>
7#include <edm4eic/VertexCollection.h>
8#include <string> // for basic_string
9#include <string_view> // for string_view
10
13
14namespace eicrecon {
15
17 algorithms::Algorithm<algorithms::Input<edm4eic::VertexCollection>,
18 algorithms::Output<edm4eic::VertexCollection>>;
19
21 public WithPodConfig<PrimaryVerticesConfig> {
22
23public:
24 PrimaryVertices(std::string_view name)
26 {"inputVertices"},
27 {"outputPrimaryVertices"},
28 "Sort reconstructed vertices in PrimaryVertices collection"} {}
29
30 void init() final;
31 void process(const Input&, const Output&) const final;
32
33private:
34};
35} // namespace eicrecon
Definition PrimaryVertices.h:21
PrimaryVertices(std::string_view name)
Definition PrimaryVertices.h:24
Definition WithPodConfig.h:22
-client
Definition CalorimeterClusterRecoCoG.cc:37
algorithms::Algorithm< algorithms::Input< edm4eic::VertexCollection >, algorithms::Output< edm4eic::VertexCollection > > PrimaryVerticesAlgorithm
Definition PrimaryVertices.h:18