From c0f71b446e0fe88fb4b7c8f3ad45d71eba5848bf Mon Sep 17 00:00:00 2001 From: Beomki Yeo Date: Wed, 9 Oct 2024 18:42:36 +0200 Subject: [PATCH] Set the pT cut to 0.5 GeV/c --- .../include/traccc/efficiency/finding_performance_writer.hpp | 2 +- .../include/traccc/efficiency/seeding_performance_writer.hpp | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/performance/include/traccc/efficiency/finding_performance_writer.hpp b/performance/include/traccc/efficiency/finding_performance_writer.hpp index e79fef3f71..bd5e6b423e 100644 --- a/performance/include/traccc/efficiency/finding_performance_writer.hpp +++ b/performance/include/traccc/efficiency/finding_performance_writer.hpp @@ -51,7 +51,7 @@ class finding_performance_writer { {"Num", plot_helpers::binning("N", 30, -0.5f, 29.5f)}}; /// Cut values - scalar pT_cut = 1.f * traccc::unit::GeV; + scalar pT_cut = 0.5f * traccc::unit::GeV; scalar z_min = -500.f * traccc::unit::mm; scalar z_max = 500.f * traccc::unit::mm; scalar r_max = 200.f * traccc::unit::mm; diff --git a/performance/include/traccc/efficiency/seeding_performance_writer.hpp b/performance/include/traccc/efficiency/seeding_performance_writer.hpp index 6bbeee67bf..7d814c2026 100644 --- a/performance/include/traccc/efficiency/seeding_performance_writer.hpp +++ b/performance/include/traccc/efficiency/seeding_performance_writer.hpp @@ -50,7 +50,7 @@ class seeding_performance_writer { {"Num", plot_helpers::binning("N", 30, -0.5f, 29.5f)}}; /// Cut values - scalar pT_cut = 1.f * traccc::unit::GeV; + scalar pT_cut = 0.5f * traccc::unit::GeV; scalar z_min = -500.f * traccc::unit::mm; scalar z_max = 500.f * traccc::unit::mm; scalar r_max = 200.f * traccc::unit::mm;