Import Geant4 11.1.0 source tree

This commit is contained in:
Gabriele Cosmo
2022-12-09 14:43:28 +01:00
parent c07cea1fe0
commit 9f34590941
3810 changed files with 200490 additions and 182326 deletions
@@ -24,7 +24,7 @@
// ********************************************************************
//
//
/// \file ActionInitialization.hh
/// \file B3/B3b/include/ActionInitialization.hh
/// \brief Definition of the B3b::ActionInitialization class
#ifndef B3bActionInitialization_h
@@ -42,8 +42,8 @@ namespace B3b
class ActionInitialization : public G4VUserActionInitialization
{
public:
ActionInitialization();
~ActionInitialization() override;
ActionInitialization() = default;
~ActionInitialization() override = default;
void BuildForMaster() const override;
void Build() const override;
@@ -24,7 +24,7 @@
// ********************************************************************
//
//
/// \file DetectorConstruction.hh
/// \file B3/B3b/include/DetectorConstruction.hh
/// \brief Definition of the B3::DetectorConstruction class
#ifndef B3DetectorConstruction_h
@@ -48,7 +48,7 @@ class DetectorConstruction : public G4VUserDetectorConstruction
{
public:
DetectorConstruction();
~DetectorConstruction() override;
~DetectorConstruction() override = default;
public:
G4VPhysicalVolume* Construct() override;
+2 -2
View File
@@ -24,7 +24,7 @@
// ********************************************************************
//
//
/// \file PhysicsList.hh
/// \file B3/B3b/include/PhysicsList.hh
/// \brief Definition of the B3::PhysicsList class
#ifndef B3PhysicsList_h
@@ -46,7 +46,7 @@ class PhysicsList: public G4VModularPhysicsList
{
public:
PhysicsList();
~PhysicsList() override;
~PhysicsList() override = default;
void SetCuts() override;
};
@@ -24,7 +24,7 @@
// ********************************************************************
//
//
/// \file PrimaryGeneratorAction.hh
/// \file B3/B3b/include/PrimaryGeneratorAction.hh
/// \brief Definition of the B3::PrimaryGeneratorAction class
#ifndef B3PrimaryGeneratorAction_h
+3 -3
View File
@@ -24,7 +24,7 @@
// ********************************************************************
//
//
/// \file Run.hh
/// \file B3/B3b/include/Run.hh
/// \brief Definition of the B3b::Run class
#ifndef B3bRun_h
@@ -45,8 +45,8 @@ namespace B3b
class Run : public G4Run
{
public:
Run();
~Run() override;
Run() = default;
~Run() override = default;
void RecordEvent(const G4Event*) override;
void Merge(const G4Run*) override;
+2 -2
View File
@@ -24,7 +24,7 @@
// ********************************************************************
//
//
/// \file RunAction.hh
/// \file B3/B3b/include/RunAction.hh
/// \brief Definition of the B3b::RunAction class
#ifndef B3bRunAction_h
@@ -44,7 +44,7 @@ class RunAction : public G4UserRunAction
{
public:
RunAction();
~RunAction() override;
~RunAction() override = default;
G4Run* GenerateRun() override;
void BeginOfRunAction(const G4Run*) override;
@@ -24,7 +24,7 @@
// ********************************************************************
//
//
/// \file StackingAction.hh
/// \file B3/B3b/include/StackingAction.hh
/// \brief Definition of the B3::StackingAction class
#ifndef B3StackingAction_h
@@ -44,8 +44,8 @@ namespace B3
class StackingAction : public G4UserStackingAction
{
public:
StackingAction();
~StackingAction() override;
StackingAction() = default;
~StackingAction() override = default;
G4ClassificationOfNewTrack ClassifyNewTrack(const G4Track*) override;
};