Skip to content
This repository has been archived by the owner on May 6, 2024. It is now read-only.

Commit

Permalink
no need to override when final implies override
Browse files Browse the repository at this point in the history
  • Loading branch information
tomeichlersmith committed Oct 27, 2023
1 parent 4a68965 commit 1e640fc
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions include/SimCore/GammaPhysics.h
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ class GammaPhysics : public G4VPhysicsConstructor {
* We don't do anything here since we are just attaching/updating
* the photon physics.
*/
void ConstructParticle() final override;
void ConstructParticle() final;

/**
* We do two things for this call back during initialization.
Expand All @@ -66,13 +66,14 @@ class GammaPhysics : public G4VPhysicsConstructor {
* to lower its cross-section before any EM process is called
* (if need be).
*/
void ConstructProcess() final override;
void ConstructProcess() final;

private:
/**
* The gamma to muons process.
*/
G4GammaConversionToMuons gammaConvProcess;

/**
* Parameters from the configuration to pass along to the photonuclear model.
*/
Expand Down

0 comments on commit 1e640fc

Please sign in to comment.