Import Geant4 1.1.0 source tree

This commit is contained in:
Gabriele Cosmo
2016-06-08 15:34:16 +02:00
parent ca1c8cb059
commit 103bda00c8
2654 changed files with 29719 additions and 20203 deletions
@@ -45,7 +45,7 @@ Init(G4int A, G4int Z, G4double frac)
G4int total;
if(hasInelasticData)
{
ifstream aDataSet(aName, ios::in);
G4std::ifstream aDataSet(aName, G4std::ios::in);
aDataSet >> dummy >> dummy >> total;
inelasticData.Init(aDataSet, total, eV);
}
@@ -56,7 +56,7 @@ Init(G4int A, G4int Z, G4double frac)
G4NeutronHPVector captureData;
if(hasCaptureData)
{
ifstream aDataSet(aName, ios::in);
G4std::ifstream aDataSet(aName, G4std::ios::in);
aDataSet >> dummy >> dummy >> total;
captureData.Init(aDataSet, total, eV);
}
@@ -67,7 +67,7 @@ Init(G4int A, G4int Z, G4double frac)
G4NeutronHPVector elasticData;
if(hasElasticData)
{
ifstream aDataSet(aName, ios::in);
G4std::ifstream aDataSet(aName, G4std::ios::in);
aDataSet >> dummy >> dummy >> total;
elasticData.Init(aDataSet, total, eV);
}
@@ -81,7 +81,7 @@ Init(G4int A, G4int Z, G4double frac)
G4NeutronHPVector fissionData;
if(hasFissionData)
{
ifstream aDataSet(aName, ios::in);
G4std::ifstream aDataSet(aName, G4std::ios::in);
aDataSet >> dummy >> dummy >> total;
fissionData.Init(aDataSet, total, eV);
}
@@ -140,7 +140,7 @@ Init(G4int A, G4int Z, G4double frac)
aName = dataUsed.GetName();
if(hasIsotopeProductionData)
{
ifstream aDataSet(aName, ios::in);
G4std::ifstream aDataSet(aName, G4std::ios::in);
aDataSet>>theNumberOfProducts;
theProductionData = new G4NeutronIsoProdCrossSections * [theNumberOfProducts];
for(G4int i=0; i<theNumberOfProducts; i++)
@@ -1,7 +1,7 @@
#include "G4NeutronIsoProdCrossSections.hh"
void G4NeutronIsoProdCrossSections::
Init(ifstream & aDataSet)
Init(G4std::ifstream & aDataSet)
{
G4int aNumberOfPoints;
aDataSet>>aNumberOfPoints;