Import Geant4 10.3.0 source tree

This commit is contained in:
Gabriele Cosmo
2016-12-09 12:35:28 +01:00
parent 4ec577e5c4
commit a3452e42ac
3514 changed files with 210500 additions and 89628 deletions
@@ -27,7 +27,7 @@
/// \brief Implementation of the ExP01DetectorConstruction class
//
//
// $Id: ExP01DetectorConstruction.cc 71791 2013-06-24 14:08:28Z gcosmo $
// $Id: ExP01DetectorConstruction.cc 98770 2016-08-09 14:22:25Z gcosmo $
//
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
@@ -262,7 +262,7 @@ G4VPhysicalVolume* ExP01DetectorConstruction::Construct()
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
void ExP01DetectorConstruction::setTargetMaterial(G4String materialName)
void ExP01DetectorConstruction::SetTargetMaterial(G4String materialName)
{
// search the material by its name
G4Material* pttoMaterial = G4Material::GetMaterial(materialName);
@@ -276,7 +276,7 @@ void ExP01DetectorConstruction::setTargetMaterial(G4String materialName)
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
void ExP01DetectorConstruction::setChamberMaterial(G4String materialName)
void ExP01DetectorConstruction::SetChamberMaterial(G4String materialName)
{
// search the material by its name
G4Material* pttoMaterial = G4Material::GetMaterial(materialName);
@@ -27,7 +27,7 @@
/// \brief Implementation of the ExP01DetectorMessenger class
//
//
// $Id: ExP01DetectorMessenger.cc 71791 2013-06-24 14:08:28Z gcosmo $
// $Id: ExP01DetectorMessenger.cc 98770 2016-08-09 14:22:25Z gcosmo $
//
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
@@ -91,10 +91,10 @@ ExP01DetectorMessenger::~ExP01DetectorMessenger()
void ExP01DetectorMessenger::SetNewValue(G4UIcommand* command,G4String newValue)
{
if( command == fTargMatCmd )
{ fDetector->setTargetMaterial(newValue);}
{ fDetector->SetTargetMaterial(newValue);}
if( command == fChamMatCmd )
{ fDetector->setChamberMaterial(newValue);}
{ fDetector->SetChamberMaterial(newValue);}
if( command == fFieldCmd )
{ fDetector->SetMagField(fFieldCmd->GetNewDoubleValue(newValue));}
@@ -27,7 +27,7 @@
/// \brief Implementation of the ExP01RunAction class
//
//
// $Id: ExP01RunAction.cc 71791 2013-06-24 14:08:28Z gcosmo $
// $Id: ExP01RunAction.cc 98770 2016-08-09 14:22:25Z gcosmo $
//
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
@@ -61,5 +61,3 @@ void ExP01RunAction::EndOfRunAction(const G4Run*)
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
@@ -26,7 +26,7 @@
/// \file persistency/P01/src/RootIO.cc
/// \brief Implementation of the RootIO class
//
// $Id: RootIO.cc 93305 2015-10-16 07:34:53Z gcosmo $
// $Id: RootIO.cc 98770 2016-08-09 14:22:25Z gcosmo $
//
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
@@ -87,7 +87,6 @@ void RootIO::Write(std::vector<ExP01TrackerHit*>* hcont)
G4cout << "writing " << stevt << G4endl;
fFile->WriteObject(hcont, chevt);
}