We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a18e296 commit ba48279Copy full SHA for ba48279
sbncode/CAFMaker/FillReco.cxx
@@ -810,6 +810,8 @@ namespace caf
810
const std::vector<float> &dedx = calo.dEdx();
811
const std::vector<float> &pitch = calo.TrkPitchVec();
812
const std::vector<float> &rr = calo.ResidualRange();
813
+ const std::vector<float> &efield = calo.Efield();
814
+ const std::vector<float> &phi = calo.Phi();
815
const std::vector<geo::Point_t> &xyz = calo.XYZ();
816
const std::vector<size_t> &tps = calo.TpIndices();
817
@@ -831,6 +833,8 @@ namespace caf
831
833
p.dqdx = dqdx[i];
832
834
p.dedx = dedx[i];
835
p.pitch = pitch[i];
836
+ p.efield = efield[i];
837
+ p.phi = phi[i];
838
p.x = xyz[i].x();
839
p.y = xyz[i].y();
840
p.z = xyz[i].z();
0 commit comments