Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down Expand Up @@ -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);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down Expand Up @@ -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);
Expand Down
3 changes: 1 addition & 2 deletions benchmarks/Inclusive/dis/analysis/dis_electrons.cxx
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
#include "common_bench/benchmark.h"
#include "common_bench/mt.h"
#include "common_bench/util.h"
#include "common_bench/plot.h"

Expand Down Expand Up @@ -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();
Comment thread
wdconinc marked this conversation as resolved.
ROOT::RDataFrame d("events", rec_file);

std::string esigma_Q2_col_name, esigma_x_col_name;
Expand Down
Loading