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
+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;