diff --git a/benchmarks/Exclusive-Diffraction-Tagging/dvmp/analysis/vm_invar.cxx b/benchmarks/Exclusive-Diffraction-Tagging/dvmp/analysis/vm_invar.cxx index 25c63ad5..6713f483 100644 --- a/benchmarks/Exclusive-Diffraction-Tagging/dvmp/analysis/vm_invar.cxx +++ b/benchmarks/Exclusive-Diffraction-Tagging/dvmp/analysis/vm_invar.cxx @@ -2,7 +2,6 @@ #include "common_bench/plot.h" #include "common_bench/benchmark.h" -#include "common_bench/mt.h" #include "common_bench/util.h" #include "ROOT/RDataFrame.hxx" @@ -56,7 +55,7 @@ int vm_invar(const std::string& config_name) {"target", ".1"}}}; // Run this in multi-threaded mode if desired - ROOT::EnableImplicitMT(kNumThreads); + ROOT::EnableImplicitMT(); // The particles we are looking for. E.g. J/psi decaying into e+e- const double vm_mass = common_bench::get_pdg_mass(vm_name); diff --git a/benchmarks/Exclusive-Diffraction-Tagging/dvmp/analysis/vm_mass.cxx b/benchmarks/Exclusive-Diffraction-Tagging/dvmp/analysis/vm_mass.cxx index a4843bc8..0c6b801e 100644 --- a/benchmarks/Exclusive-Diffraction-Tagging/dvmp/analysis/vm_mass.cxx +++ b/benchmarks/Exclusive-Diffraction-Tagging/dvmp/analysis/vm_mass.cxx @@ -2,7 +2,6 @@ #include "common_bench/plot.h" #include "common_bench/benchmark.h" -#include "common_bench/mt.h" #include "common_bench/util.h" #include "ROOT/RDataFrame.hxx" @@ -73,7 +72,7 @@ int vm_mass(const std::string& config_name) {"target", ".2"}}}; //these 2 need to be consistent double width_target = 0.2; //going to find a way to use the same variable // Run this in multi-threaded mode if desired - ROOT::EnableImplicitMT(kNumThreads); + ROOT::EnableImplicitMT(); // The particles we are looking for. E.g. J/psi decaying into e+e- const double vm_mass = common_bench::get_pdg_mass(vm_name); diff --git a/benchmarks/Inclusive/dis/analysis/dis_electrons.cxx b/benchmarks/Inclusive/dis/analysis/dis_electrons.cxx index 7f3d135e..3f4da3e2 100644 --- a/benchmarks/Inclusive/dis/analysis/dis_electrons.cxx +++ b/benchmarks/Inclusive/dis/analysis/dis_electrons.cxx @@ -1,5 +1,4 @@ #include "common_bench/benchmark.h" -#include "common_bench/mt.h" #include "common_bench/util.h" #include "common_bench/plot.h" @@ -58,7 +57,7 @@ int dis_electrons(const std::string& config_name) {"target", "0.1"}}}; // Run this in multi-threaded mode if desired - ROOT::EnableImplicitMT(kNumThreads); + ROOT::EnableImplicitMT(); ROOT::RDataFrame d("events", rec_file); std::string esigma_Q2_col_name, esigma_x_col_name;