Skip to content

Commit

Permalink
Override two functions in FairMCApplication
Browse files Browse the repository at this point in the history
  • Loading branch information
karabowi committed May 6, 2022
1 parent 67cd559 commit 011da54
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions base/sim/FairMCApplication.h
Original file line number Diff line number Diff line change
Expand Up @@ -99,10 +99,11 @@ class FairMCApplication : public TVirtualMCApplication
/** Define parameters for optical processes (optional) */
void ConstructOpGeometry() override; // MC Application

virtual void ConstructSensitiveDetectors();
/** set sensitive detectors following TVirtualMCSensitiveDetector logic */
void ConstructSensitiveDetectors() override; // MC Application

/** Define actions just before sensitive->EndOfEvent */
virtual void EndOfEvent(); // MC Application
void EndOfEvent() override; // MC Application
/** Define actions at the end of event */
void FinishEvent() override; // MC Application
/** Define actions at the end of primary track */
Expand Down

0 comments on commit 011da54

Please sign in to comment.