From 3e924571f309ae6da2fed7e2d7268de97998596f Mon Sep 17 00:00:00 2001 From: Raees Khan <rak177@pitt.edu> Date: Tue, 2 Aug 2022 09:45:18 -0400 Subject: [PATCH] Fixing minor typos in documentation --- documentation/docs/fullsimlight/plugins/index.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/documentation/docs/fullsimlight/plugins/index.md b/documentation/docs/fullsimlight/plugins/index.md index bcbef4a3d..b97bad8ee 100644 --- a/documentation/docs/fullsimlight/plugins/index.md +++ b/documentation/docs/fullsimlight/plugins/index.md @@ -13,10 +13,10 @@ As a simple example, suppose you as the user want to keep track of the various p Geant4 provides classes to assist with this task. Namely the G4UserSteppingAction class contains the function ```c++ -virtual void UserSteppingAction (const G4Step *); +virtual void UserSteppingAction (const G4Step *aStep); ``` -By overriding this function we can get particle positions and names through the G4Step object. Now since we also want to write out our hits to a file for each event, we can use the G4UserEventAction, which conveniently provides the function +By overriding this function we can get particle positions and names through the G4Step object. Now since we also want to write out our hits to a file for each event, we can use the G4UserEventAction class, which conveniently provides the function ```c++ virtual void EndOfEventAction (const G4Event *anEvent); -- GitLab