Import Geant4 11.3.0.beta source tree

This commit is contained in:
Gabriele Cosmo
2024-06-28 13:08:51 +02:00
parent f7b23877ed
commit e58e650b32
5232 changed files with 239416 additions and 244360 deletions
@@ -26,7 +26,7 @@
/// \file DetectorConstruction.hh
/// \brief Definition of the DetectorConstruction class
//
//
//
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
@@ -41,21 +41,18 @@
class DetectorConstruction : public G4VUserDetectorConstruction
{
public:
DetectorConstruction();
~DetectorConstruction() override = default;
~DetectorConstruction() override = default;
G4VPhysicalVolume* Construct() override;
G4double GetWorldSizeXY() {return fWorldSizeXY;};
G4double GetWorldSizeZ() {return fWorldSizeZ;};
G4double GetWorldSizeXY() { return fWorldSizeXY; };
G4double GetWorldSizeZ() { return fWorldSizeZ; };
private:
G4double fWorldSizeXY = 0., fWorldSizeZ = 0.;
};
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
#endif
@@ -26,7 +26,7 @@
/// \file PhysicsList.hh
/// \brief Definition of the PhysicsList class
//
//
//
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
@@ -38,22 +38,19 @@
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
class PhysicsList: public G4VUserPhysicsList
class PhysicsList : public G4VUserPhysicsList
{
public:
PhysicsList() = default;
~PhysicsList() override = default;
~PhysicsList() override = default;
protected:
// Construct particle and physics
void ConstructParticle() override;
void ConstructProcess() override;
void SetCuts() override;
void ConstructProcess() override;
void SetCuts() override;
};
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
#endif
@@ -26,7 +26,7 @@
/// \file PrimaryGenerator.hh
/// \brief Definition of the PrimaryGenerator class
//
//
//
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
@@ -42,8 +42,8 @@ class G4Event;
class PrimaryGenerator : public G4VPrimaryGenerator
{
public:
PrimaryGenerator() = default;
~PrimaryGenerator() override = default;
PrimaryGenerator() = default;
~PrimaryGenerator() override = default;
public:
void GeneratePrimaryVertex(G4Event*) override;
@@ -26,7 +26,7 @@
/// \file PrimaryGeneratorAction.hh
/// \brief Definition of the PrimaryGeneratorAction class
//
//
//
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
@@ -43,8 +43,8 @@ class PrimaryGenerator;
class PrimaryGeneratorAction : public G4VUserPrimaryGeneratorAction
{
public:
PrimaryGeneratorAction();
~PrimaryGeneratorAction() override;
PrimaryGeneratorAction();
~PrimaryGeneratorAction() override;
public:
void GeneratePrimaries(G4Event*) override;