Skip to content
Snippets Groups Projects
Commit a06d7669 authored by Ziyue Zhang's avatar Ziyue Zhang
Browse files

WIP: Try out Dummy

parent 3d550154
No related branches found
No related tags found
No related merge requests found
This commit is part of merge request !27. Comments created here will be created in the context of that merge request.
...@@ -82,7 +82,7 @@ int vm_mass(const std::string& config_name) ...@@ -82,7 +82,7 @@ int vm_mass(const std::string& config_name)
// util::PrintGeant4(mcparticles2); // util::PrintGeant4(mcparticles2);
// Define analysis flow // Define analysis flow
auto d_im = d.Define("p_rec", momenta_from_tracking, {"outputTrackParameters"}) auto d_im = d.Define("p_rec", momenta_from_tracking, {"outputTrackParameters"})
.Define("p_rec_test", util::p_dummy, "DummyReconstructedParticls") .Define("p_rec_test", util::p_dummy, "DummyReconstructedParticles")
.Define("N", "p_rec.size()") .Define("N", "p_rec.size()")
.Define("p_sim", util::momenta_from_simulation, {"mcparticles2"}) .Define("p_sim", util::momenta_from_simulation, {"mcparticles2"})
.Define("decay_pair_rec", find_decay_pair, {"p_rec"}) .Define("decay_pair_rec", find_decay_pair, {"p_rec"})
......
...@@ -15,6 +15,8 @@ ...@@ -15,6 +15,8 @@
#include "dd4pod/Geant4ParticleCollection.h" #include "dd4pod/Geant4ParticleCollection.h"
#include "eicd/TrackParametersCollection.h" #include "eicd/TrackParametersCollection.h"
#include "eicd/ReconstructedParticleCollection.h"
#include "eicd/ReconstructedParticleData.h"
namespace util { namespace util {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment