We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1ee32b7 commit d2f5729Copy full SHA for d2f5729
1 file changed
sbncode/CAFMaker/FillReco.cxx
@@ -202,8 +202,8 @@ namespace caf
202
// add the CRTSpacePoint associations to the SR Veto
203
for(auto const& sp : points) {
204
srsbndcrtveto.sp_position.emplace_back(sp->X(), sp->Y(), sp->Z());
205
- srsbndcrtveto.sp_time.emplace_back(sp->Ts0()); // ns for SBND CRT SpacePoints
206
- srsbndcrtveto.sp_pe.emplace_back(sp->PE());
+ srsbndcrtveto.sp_time.push_back(sp->Ts0()); // ns for SBND CRT SpacePoints
+ srsbndcrtveto.sp_pe.push_back(sp->PE());
207
}
208
209
0 commit comments