Skip to content

Commit d2f5729

Browse files
committed
Changed emplace_back to push_back
1 parent 1ee32b7 commit d2f5729

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

sbncode/CAFMaker/FillReco.cxx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -202,8 +202,8 @@ namespace caf
202202
// add the CRTSpacePoint associations to the SR Veto
203203
for(auto const& sp : points) {
204204
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());
205+
srsbndcrtveto.sp_time.push_back(sp->Ts0()); // ns for SBND CRT SpacePoints
206+
srsbndcrtveto.sp_pe.push_back(sp->PE());
207207
}
208208
}
209209

0 commit comments

Comments
 (0)