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
+1 -32
View File
@@ -24,7 +24,7 @@
// ********************************************************************
//
//
/// \file DriftChamberHit.cc
/// \file B5/src/DriftChamberHit.cc
/// \brief Implementation of the B5::DriftChamberHit class
#include "DriftChamberHit.hh"
@@ -50,43 +50,12 @@ G4ThreadLocal G4Allocator<DriftChamberHit>* DriftChamberHitAllocator;
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
DriftChamberHit::DriftChamberHit()
{}
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
DriftChamberHit::DriftChamberHit(G4int layerID)
: fLayerID(layerID)
{}
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
DriftChamberHit::~DriftChamberHit()
{}
// //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
// DriftChamberHit::DriftChamberHit(const DriftChamberHit &right)
// : G4VHit(),
// fLayerID(right.fLayerID),
// fTime(right.fTime),
// fLocalPos(right.fLocalPos),
// fWorldPos(right.fWorldPos)
// {}
// //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
// const DriftChamberHit& DriftChamberHit::operator=(const DriftChamberHit &right)
// {
// fLayerID = right.fLayerID;
// fTime = right.fTime;
// fLocalPos = right.fLocalPos;
// fWorldPos = right.fWorldPos;
// return *this;
// }
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
G4bool DriftChamberHit::operator==(const DriftChamberHit &/*right*/) const
{
return false;