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 B2/B2a/include/ActionInitialization.hh
/// \brief Definition of the B2::ActionInitialization class
#ifndef B2ActionInitialization_h
@@ -40,8 +40,8 @@ namespace B2
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 B2/B2a/include/DetectorConstruction.hh
/// \brief Definition of the B2a::DetectorConstruction class
#ifndef B2aDetectorConstruction_h
@@ -24,7 +24,7 @@
// ********************************************************************
//
//
/// \file DetectorMessenger.hh
/// \file B2/B2a/include/DetectorMessenger.hh
/// \brief Definition of the B2a::DetectorMessenger class
#ifndef B2aDetectorMessenger_h
+3 -3
View File
@@ -24,7 +24,7 @@
// ********************************************************************
//
//
/// \file EventAction.hh
/// \file B2/B2a/include/EventAction.hh
/// \brief Definition of the B2::EventAction class
#ifndef B2EventAction_h
@@ -42,8 +42,8 @@ namespace B2
class EventAction : public G4UserEventAction
{
public:
EventAction();
~EventAction() override;
EventAction() = default;
~EventAction() override = default;
void BeginOfEventAction(const G4Event* ) override;
void EndOfEventAction(const G4Event* ) override;
@@ -24,7 +24,7 @@
// ********************************************************************
//
//
/// \file PrimaryGeneratorAction.hh
/// \file B2/B2a/include/PrimaryGeneratorAction.hh
/// \brief Definition of the B2::PrimaryGeneratorAction class
#ifndef B2PrimaryGeneratorAction_h
+2 -2
View File
@@ -24,7 +24,7 @@
// ********************************************************************
//
//
/// \file RunAction.hh
/// \file B2/B2a/include/RunAction.hh
/// \brief Definition of the B2::RunAction class
#ifndef B2RunAction_h
@@ -44,7 +44,7 @@ class RunAction : public G4UserRunAction
{
public:
RunAction();
~RunAction() override;
~RunAction() override = default;
void BeginOfRunAction(const G4Run* run) override;
void EndOfRunAction(const G4Run* run) override;
+4 -4
View File
@@ -24,7 +24,7 @@
// ********************************************************************
//
//
/// \file TrackerHit.hh
/// \file B2/B2a/include/TrackerHit.hh
/// \brief Definition of the B2::TrackerHit class
#ifndef B2TrackerHit_h
@@ -48,9 +48,9 @@ namespace B2
class TrackerHit : public G4VHit
{
public:
TrackerHit();
TrackerHit() = default;
TrackerHit(const TrackerHit&) = default;
~TrackerHit() override;
~TrackerHit() override = default;
// operators
TrackerHit& operator=(const TrackerHit&) = default;
@@ -84,7 +84,7 @@ class TrackerHit : public G4VHit
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
typedef G4THitsCollection<TrackerHit> TrackerHitsCollection;
using TrackerHitsCollection = G4THitsCollection<TrackerHit>;
extern G4ThreadLocal G4Allocator<TrackerHit>* TrackerHitAllocator;
+2 -2
View File
@@ -24,7 +24,7 @@
// ********************************************************************
//
//
/// \file TrackerSD.hh
/// \file B2/B2a/include/TrackerSD.hh
/// \brief Definition of the B2::TrackerSD class
#ifndef B2TrackerSD_h
@@ -53,7 +53,7 @@ class TrackerSD : public G4VSensitiveDetector
public:
TrackerSD(const G4String& name,
const G4String& hitsCollectionName);
~TrackerSD() override;
~TrackerSD() override = default;
// methods from base class
void Initialize(G4HCofThisEvent* hitCollection) override;