EICrecon
JANA based reconstruction for the EPIC detector
Loading...
Searching...
No Matches
PIDLookupConfig.h
Go to the documentation of this file.
1// SPDX-License-Identifier: LGPL-3.0-or-later
2// Copyright (C) 2024, Nathan Brei, Dmitry Kalinkin
3
4#pragma once
5
6#include <vector>
7
8namespace eicrecon {
9
11 std::string filename;
12 std::string system;
13 std::vector<int> pdg_values;
14 std::vector<int> charge_values;
15 std::vector<double> momentum_edges;
16 std::vector<double> polar_edges;
17 std::vector<double> azimuthal_binning;
21 bool use_radians{false};
23};
24
25} // namespace eicrecon
-client
Definition CalorimeterClusterRecoCoG.cc:37
Definition PIDLookupConfig.h:10
bool polar_bin_centers_in_lut
Definition PIDLookupConfig.h:20
std::vector< int > charge_values
Definition PIDLookupConfig.h:14
bool use_radians
Definition PIDLookupConfig.h:21
std::string system
Definition PIDLookupConfig.h:12
std::vector< double > polar_edges
Definition PIDLookupConfig.h:16
bool momentum_bin_centers_in_lut
Definition PIDLookupConfig.h:19
std::vector< double > azimuthal_binning
Definition PIDLookupConfig.h:17
std::string filename
Definition PIDLookupConfig.h:11
bool azimuthal_bin_centers_in_lut
Definition PIDLookupConfig.h:18
bool missing_electron_prob
Definition PIDLookupConfig.h:22
std::vector< int > pdg_values
Definition PIDLookupConfig.h:13
std::vector< double > momentum_edges
Definition PIDLookupConfig.h:15