Skip to content
Merged
Changes from 1 commit
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
4 changes: 4 additions & 0 deletions sbncode/CAFMaker/FillReco.cxx
Original file line number Diff line number Diff line change
Expand Up @@ -810,6 +810,8 @@ namespace caf
const std::vector<float> &dedx = calo.dEdx();
const std::vector<float> &pitch = calo.TrkPitchVec();
const std::vector<float> &rr = calo.ResidualRange();
const std::vector<float> &efield = calo.Efield();
const std::vector<float> &phi = calo.Phi();
const std::vector<geo::Point_t> &xyz = calo.XYZ();
const std::vector<size_t> &tps = calo.TpIndices();

Expand All @@ -831,6 +833,8 @@ namespace caf
p.dqdx = dqdx[i];
p.dedx = dedx[i];
p.pitch = pitch[i];
p.efield = efield[i];
p.phi = phi[i];
p.x = xyz[i].x();
p.y = xyz[i].y();
p.z = xyz[i].z();
Expand Down