File indexing completed on 2026-07-26 08:22:20
0001
0002
0003
0004
0005
0006
0007
0008 #pragma once
0009
0010 #include "traccc/definitions/common.hpp"
0011
0012 namespace traccc {
0013
0014 struct truth_matching_config {
0015 float pT_min = 0.5f * traccc::unit<float>::GeV;
0016
0017 float z_min = -500.f * traccc::unit<float>::mm;
0018 float z_max = 500.f * traccc::unit<float>::mm;
0019 float r_max = 200.f * traccc::unit<float>::mm;
0020 float eta_max = 3.f;
0021 int process_id = -1;
0022
0023 unsigned int min_track_candidates = 3;
0024 };
0025
0026 }