From 23536dd622881ff83aa99dc99a3659e4bc8ff5f5 Mon Sep 17 00:00:00 2001 From: Richard Jones Date: Mon, 25 Dec 2023 11:49:24 -0500 Subject: [PATCH] * I don't like the way the indentation tabs look in the latest update, replace leading tabs with spaces. [rtj] --- src/GlueXSteppingAction.cc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/GlueXSteppingAction.cc b/src/GlueXSteppingAction.cc index 8576ed6..023bb90 100644 --- a/src/GlueXSteppingAction.cc +++ b/src/GlueXSteppingAction.cc @@ -124,7 +124,7 @@ void GlueXSteppingAction::UserSteppingAction(const G4Step* step) G4TrackVector &secondary = *(G4TrackVector*) step->GetSecondaryInCurrentStep(); G4TrackVector::iterator iter; - G4TrackVector decaySecondaries; + G4TrackVector decaySecondaries; for (iter = secondary.begin(); iter != secondary.end(); ++iter) { if ((*iter)->GetCreatorProcess()->GetProcessType() == fDecay) { int newID = eventinfo->AssignNextGlueXTrackID(); @@ -133,7 +133,7 @@ void GlueXSteppingAction::UserSteppingAction(const G4Step* step) trackinfo->SetGlueXTrackID(newID); } (*iter)->SetUserInformation(trackinfo); - decaySecondaries.push_back(*iter); + decaySecondaries.push_back(*iter); } } if (eventinfo and decaySecondaries.size() > 0) {