Skip to content

Commit

Permalink
* I don't like the way the indentation tabs look in the latest update,
Browse files Browse the repository at this point in the history
  replace leading tabs with spaces. [rtj]
  • Loading branch information
rjones30 committed Dec 25, 2023
1 parent 87974ed commit 23536dd
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/GlueXSteppingAction.cc
Original file line number Diff line number Diff line change
Expand Up @@ -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();
Expand All @@ -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) {
Expand Down

0 comments on commit 23536dd

Please sign in to comment.