Import Geant4 10.0.0 source tree

This commit is contained in:
Gabriele Cosmo
2016-06-10 11:51:14 +02:00
parent e2d2f9810a
commit 286caacf06
12421 changed files with 730077 additions and 502383 deletions
@@ -39,12 +39,12 @@
#include <fstream>
#include "G4VDataSetAlgorithm.hh"
XrayFluoDataSet::XrayFluoDataSet(G4int Z,
XrayFluoDataSet::XrayFluoDataSet(G4int /*Z*/,
G4DataVector* points,
G4DataVector* values,
const G4VDataSetAlgorithm* interpolation,
G4double unitE, G4double unitData)
:z(Z), energies(points), data(values), algorithm(interpolation)
:energies(points), data(values), algorithm(interpolation)
{
numberOfBins = energies->size();
unit1 = unitE;
@@ -53,11 +53,11 @@ XrayFluoDataSet::XrayFluoDataSet(G4int Z,
G4cout << "XrayFluo FluoDataSet created" << G4endl;
}
XrayFluoDataSet:: XrayFluoDataSet(G4int Z,
XrayFluoDataSet:: XrayFluoDataSet(G4int /*Z*/,
const G4String& dataFile,
const G4VDataSetAlgorithm* interpolation,
G4double unitE, G4double unitData)
:z(Z), algorithm(interpolation)
: algorithm(interpolation)
{
energies = new G4DataVector;
data = new G4DataVector;