Import Geant4 9.3.0 source tree

This commit is contained in:
Gabriele Cosmo
2016-06-09 16:15:05 +02:00
parent b79225fb37
commit 74cad5e589
3877 changed files with 234205 additions and 167127 deletions
@@ -24,16 +24,18 @@
// ********************************************************************
//
//
// $Id: G4ShellEMDataSet.hh,v 1.12 2008/03/17 13:45:25 pia Exp $
// GEANT4 tag $Name: geant4-09-02 $
// $Id: G4ShellEMDataSet.hh,v 1.13 2009/09/25 07:41:34 sincerti Exp $
// GEANT4 tag $Name: geant4-09-03 $
//
// Author: Maria Grazia Pia (Maria.Grazia.Pia@cern.ch)
//
// History:
// -----------
// 31 Jul 2001 MGP Created
// 9 Mar 2008 MGP Cleaned up unreadable code modified by former developer
// (Further clean-up needed)
// 31 Jul 2001 MGP Created
// 9 Mar 2008 MGP Cleaned up unreadable code modified by former developer
// (Further clean-up needed)
// 15 Jul 2009 N.A.Karakatsanis New methods added for loading logarithmic data
// to enhance computing performance of interpolation
//
// -------------------------------------------------------------------
@@ -74,9 +76,19 @@ public:
virtual const G4DataVector& GetEnergies(G4int componentId) const { return GetComponent(componentId)->GetEnergies(0); }
virtual const G4DataVector& GetData(G4int componentId) const { return GetComponent(componentId)->GetData(0); }
virtual const G4DataVector& GetLogEnergies(G4int componentId) const { return GetComponent(componentId)->GetLogEnergies(0); }
virtual const G4DataVector& GetLogData(G4int componentId) const { return GetComponent(componentId)->GetLogData(0); }
virtual void SetEnergiesData(G4DataVector* energies, G4DataVector* data, G4int componentId);
virtual void SetLogEnergiesData(G4DataVector* energies,
G4DataVector* data,
G4DataVector* log_energies,
G4DataVector* log_data,
G4int componentId);
virtual G4bool LoadData(const G4String& fileName);
virtual G4bool LoadNonLogData(const G4String& fileName);
virtual G4bool SaveData(const G4String& fileName) const;
virtual G4double RandomSelect(G4int /*componentId = 0*/) const { return -1.; };