Skip to content
Snippets Groups Projects

Resolve "Include synchrotron radiation benchmark"

Merged Wouter Deconinck requested to merge 31-include-synchrotron-radiation-benchmark into master
1 file
+ 4
4
Compare changes
  • Side-by-side
  • Inline
@@ -19,7 +19,7 @@ R__LOAD_LIBRARY(libDD4pod.so)
#include "eicd/ReconstructedParticleCollection.h"
void synchrotron_raw(const char* fname = "sim_synchrotron.root"){
void synchrotron_sim(const char* fname = "sim_synchrotron.root"){
fmt::print(fmt::emphasis::bold | fg(fmt::color::forest_green), "Running synchrotron analysis...\n");
@@ -34,8 +34,8 @@ void synchrotron_raw(const char* fname = "sim_synchrotron.root"){
;
auto n_VertexBarrelHits = df0.Mean("n_VertexBarrelHits");
auto n_VertexEndcapHits = df0.Mean("n_VertexEncdapHits");
auto n_VertexEndcapHits = df0.Mean("n_VertexEndcapHits");
std::cout << "n_VertexBarrelHits = " << n_VertexBarrelHits << " / ev" << std::endl;
std::cout << "n_VertexEndcapHits = " << n_VertexEndcapHits << " / ev" << std::endl;
std::cout << "n_VertexBarrelHits = " << *n_VertexBarrelHits << " / ev" << std::endl;
std::cout << "n_VertexEndcapHits = " << *n_VertexEndcapHits << " / ev" << std::endl;
}
Loading