Import Geant4 10.5.0.beta source tree

This commit is contained in:
Gabriele Cosmo
2018-06-29 10:58:11 +02:00
parent fe81a77428
commit 6aa23be517
1581 changed files with 124288 additions and 83758 deletions
@@ -26,7 +26,7 @@
/// \file persistency/P02/src/ExP02DetectorConstruction.cc
/// \brief Implementation of the ExP02DetectorConstruction class
//
// $Id: ExP02DetectorConstruction.cc 93306 2015-10-16 07:38:07Z gcosmo $
// $Id: ExP02DetectorConstruction.cc 110837 2018-06-15 15:16:45Z gcosmo $
//
//
#include "ExP02DetectorConstruction.hh"
@@ -163,9 +163,8 @@ G4VPhysicalVolume* ExP02DetectorConstruction::Construct()
// gDebug = 1;
const G4ElementTable* eltab = G4Element::GetElementTable();
const G4MaterialTable* mattab = G4Material::GetMaterialTable();
ExP02GeoTree* geotree = new ExP02GeoTree(fExperimentalHall_phys, eltab, mattab);
ExP02GeoTree* geotree = new ExP02GeoTree(fExperimentalHall_phys, eltab);
TFile fo("geo.root","RECREATE");
@@ -26,7 +26,7 @@
/// \file persistency/P02/src/ExP02GeoTree.cc
/// \brief Implementation of the ExP02GeoTree class
//
// $Id: ExP02GeoTree.cc 71727 2013-06-21 07:55:45Z gcosmo $
// $Id: ExP02GeoTree.cc 110837 2018-06-15 15:16:45Z gcosmo $
// Include files
// local
@@ -42,17 +42,15 @@
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
ExP02GeoTree::ExP02GeoTree( )
: fTopV(0), fEltab(0), fMattab(0)
: fTopV(0), fEltab(0)
{
fEltab = G4Element::GetElementTable();
fMattab = G4Material::GetMaterialTable();
}
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
ExP02GeoTree::ExP02GeoTree(G4VPhysicalVolume* vol, const G4ElementTable* et,
const G4MaterialTable* mt)
: fTopV(vol), fEltab(et), fMattab(mt)
ExP02GeoTree::ExP02GeoTree(G4VPhysicalVolume* vol, const G4ElementTable* et)
: fTopV(vol), fEltab(et)
{}
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......