Import Geant4 10.5.0 source tree
This commit is contained in:
@@ -26,7 +26,6 @@
|
||||
/// \file hadronic/Hadr01/src/CheckVolumeSD.cc
|
||||
/// \brief Implementation of the CheckVolumeSD class
|
||||
//
|
||||
// $Id: CheckVolumeSD.cc 70761 2013-06-05 12:30:51Z gcosmo $
|
||||
//
|
||||
/////////////////////////////////////////////////////////////////////////
|
||||
//
|
||||
|
||||
@@ -26,7 +26,6 @@
|
||||
/// \file hadronic/Hadr01/src/DetectorConstruction.cc
|
||||
/// \brief Implementation of the DetectorConstruction class
|
||||
//
|
||||
// $Id: DetectorConstruction.cc 109654 2018-05-04 08:57:00Z gcosmo $
|
||||
//
|
||||
/////////////////////////////////////////////////////////////////////////
|
||||
//
|
||||
@@ -158,8 +157,8 @@ G4VPhysicalVolume* DetectorConstruction::Construct()
|
||||
z += 2.0*fSliceZ;
|
||||
}
|
||||
G4cout << "### Target consist of " << fSlices
|
||||
<< " of " << fTargetMaterial->GetName()
|
||||
<< " disks with R(mm)= " << fRadius/mm
|
||||
<< " disks of " << fTargetMaterial->GetName()
|
||||
<< " with R(mm)= " << fRadius/mm
|
||||
<< " Width(mm)= " << 2.0*fSliceZ/mm
|
||||
<< " Total Length(mm)= " << 2.0*fTargetZ/mm
|
||||
<< " ###" << G4endl;
|
||||
|
||||
@@ -26,7 +26,6 @@
|
||||
/// \file hadronic/Hadr01/src/DetectorMessenger.cc
|
||||
/// \brief Implementation of the DetectorMessenger class
|
||||
//
|
||||
// $Id: DetectorMessenger.cc 109185 2018-04-03 07:20:46Z gcosmo $
|
||||
//
|
||||
/////////////////////////////////////////////////////////////////////////
|
||||
//
|
||||
|
||||
@@ -26,7 +26,6 @@
|
||||
/// \file hadronic/Hadr01/src/EventAction.cc
|
||||
/// \brief Implementation of the EventAction class
|
||||
//
|
||||
// $Id: EventAction.cc 70761 2013-06-05 12:30:51Z gcosmo $
|
||||
//
|
||||
/////////////////////////////////////////////////////////////////////////
|
||||
//
|
||||
|
||||
@@ -26,7 +26,6 @@
|
||||
/// \file hadronic/Hadr01/src/EventActionMessenger.cc
|
||||
/// \brief Implementation of the EventActionMessenger class
|
||||
//
|
||||
// $Id: EventActionMessenger.cc 70761 2013-06-05 12:30:51Z gcosmo $
|
||||
//
|
||||
/////////////////////////////////////////////////////////////////////////
|
||||
//
|
||||
|
||||
@@ -26,7 +26,6 @@
|
||||
/// \file hadronic/Hadr01/src/Histo.cc
|
||||
/// \brief Implementation of the Histo class
|
||||
//
|
||||
// $Id: Histo.cc 107541 2017-11-22 08:24:57Z gcosmo $
|
||||
//
|
||||
//---------------------------------------------------------------------------
|
||||
//
|
||||
|
||||
@@ -26,7 +26,6 @@
|
||||
/// \file hadronic/Hadr01/src/HistoManager.cc
|
||||
/// \brief Implementation of the HistoManager class
|
||||
//
|
||||
// $Id: HistoManager.cc 109185 2018-04-03 07:20:46Z gcosmo $
|
||||
//
|
||||
//---------------------------------------------------------------------------
|
||||
//
|
||||
|
||||
@@ -27,7 +27,6 @@
|
||||
/// \brief Implementation of the HistoMessenger class
|
||||
//
|
||||
//
|
||||
// $Id: HistoMessenger.cc 107541 2017-11-22 08:24:57Z gcosmo $
|
||||
//
|
||||
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
|
||||
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
|
||||
|
||||
@@ -27,7 +27,6 @@
|
||||
/// \brief Implementation of the PhysicsList class
|
||||
//
|
||||
//
|
||||
// $Id: PhysicsList.cc 107541 2017-11-22 08:24:57Z gcosmo $
|
||||
//
|
||||
/////////////////////////////////////////////////////////////////////////
|
||||
//
|
||||
@@ -65,6 +64,8 @@
|
||||
#include "G4StoppingPhysics.hh"
|
||||
#include "G4IonBinaryCascadePhysics.hh"
|
||||
#include "G4IonPhysics.hh"
|
||||
#include "G4IonPhysicsXS.hh"
|
||||
#include "G4IonElasticPhysics.hh"
|
||||
#include "G4EmExtraPhysics.hh"
|
||||
#include "G4EmParameters.hh"
|
||||
#include "G4PhysListFactoryMessenger.hh"
|
||||
@@ -256,6 +257,7 @@ void PhysicsList::AddPhysicsList(const G4String& name)
|
||||
|
||||
SetBuilderList0(false);
|
||||
fHadronPhys.push_back( new G4HadronPhysicsQGSP_BIC(verboseLevel));
|
||||
fHadronPhys.push_back( new G4IonElasticPhysics(verboseLevel));
|
||||
|
||||
} else if (name == "QGSP_BIC_EMY") {
|
||||
|
||||
@@ -321,7 +323,8 @@ void PhysicsList::SetBuilderList2()
|
||||
fHadronPhys.push_back( new G4EmExtraPhysics(verboseLevel));
|
||||
fHadronPhys.push_back( new G4HadronElasticPhysicsXS(verboseLevel) );
|
||||
fHadronPhys.push_back( new G4StoppingPhysics(verboseLevel));
|
||||
fHadronPhys.push_back( new G4IonPhysics(verboseLevel));
|
||||
fHadronPhys.push_back( new G4IonPhysicsXS(verboseLevel));
|
||||
fHadronPhys.push_back( new G4IonElasticPhysics(verboseLevel));
|
||||
fHadronPhys.push_back( new G4NeutronTrackingCut(verboseLevel));
|
||||
}
|
||||
|
||||
|
||||
@@ -27,7 +27,6 @@
|
||||
/// \brief Implementation of the PhysicsListMessenger class
|
||||
//
|
||||
//
|
||||
// $Id: PhysicsListMessenger.cc 107541 2017-11-22 08:24:57Z gcosmo $
|
||||
//
|
||||
//
|
||||
/////////////////////////////////////////////////////////////////////////
|
||||
|
||||
@@ -26,7 +26,6 @@
|
||||
/// \file hadronic/Hadr01/src/PrimaryGeneratorAction.cc
|
||||
/// \brief Implementation of the PrimaryGeneratorAction class
|
||||
//
|
||||
// $Id: PrimaryGeneratorAction.cc 109185 2018-04-03 07:20:46Z gcosmo $
|
||||
//
|
||||
/////////////////////////////////////////////////////////////////////////
|
||||
//
|
||||
|
||||
@@ -26,7 +26,6 @@
|
||||
/// \file hadronic/Hadr01/src/RunAction.cc
|
||||
/// \brief Implementation of the RunAction class
|
||||
//
|
||||
// $Id: RunAction.hh,v 1.1 2008-07-07 16:37:26 vnivanch Exp $
|
||||
//
|
||||
// -------------------------------------------------------------
|
||||
//
|
||||
|
||||
@@ -26,7 +26,6 @@
|
||||
/// \file hadronic/Hadr01/src/StackingAction.cc
|
||||
/// \brief Implementation of the StackingAction class
|
||||
//
|
||||
// $Id: StackingAction.cc 70761 2013-06-05 12:30:51Z gcosmo $
|
||||
//
|
||||
/////////////////////////////////////////////////////////////////////////
|
||||
//
|
||||
|
||||
@@ -26,7 +26,6 @@
|
||||
/// \file hadronic/Hadr01/src/StackingMessenger.cc
|
||||
/// \brief Implementation of the StackingMessenger class
|
||||
//
|
||||
// $Id: StackingMessenger.cc 70761 2013-06-05 12:30:51Z gcosmo $
|
||||
//
|
||||
/////////////////////////////////////////////////////////////////////////
|
||||
//
|
||||
|
||||
@@ -26,7 +26,6 @@
|
||||
/// \file hadronic/Hadr01/src/TargetSD.cc
|
||||
/// \brief Implementation of the TargetSD class
|
||||
//
|
||||
// $Id: TargetSD.cc 70761 2013-06-05 12:30:51Z gcosmo $
|
||||
//
|
||||
/////////////////////////////////////////////////////////////////////////
|
||||
//
|
||||
|
||||
Reference in New Issue
Block a user