diff --git a/sbncode/CAFMaker/FillReco.cxx b/sbncode/CAFMaker/FillReco.cxx index cb3dc5f6c..ae363dd61 100644 --- a/sbncode/CAFMaker/FillReco.cxx +++ b/sbncode/CAFMaker/FillReco.cxx @@ -810,6 +810,8 @@ namespace caf const std::vector &dedx = calo.dEdx(); const std::vector &pitch = calo.TrkPitchVec(); const std::vector &rr = calo.ResidualRange(); + const std::vector &efield = calo.Efield(); + const std::vector &phi = calo.Phi(); const std::vector &xyz = calo.XYZ(); const std::vector &tps = calo.TpIndices(); @@ -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] * M_PI / 180.; // converting to radian since calo.Phi() is in degree p.x = xyz[i].x(); p.y = xyz[i].y(); p.z = xyz[i].z();