Import Geant4 9.3.0 source tree
This commit is contained in:
@@ -0,0 +1,177 @@
|
||||
//
|
||||
// ********************************************************************
|
||||
// * License and Disclaimer *
|
||||
// * *
|
||||
// * The Geant4 software is copyright of the Copyright Holders of *
|
||||
// * the Geant4 Collaboration. It is provided under the terms and *
|
||||
// * conditions of the Geant4 Software License, included in the file *
|
||||
// * LICENSE and available at http://cern.ch/geant4/license . These *
|
||||
// * include a list of copyright holders. *
|
||||
// * *
|
||||
// * Neither the authors of this software system, nor their employing *
|
||||
// * institutes,nor the agencies providing financial support for this *
|
||||
// * work make any representation or warranty, express or implied, *
|
||||
// * regarding this software system or assume any liability for its *
|
||||
// * use. Please see the license in the file LICENSE and URL above *
|
||||
// * for the full disclaimer and the limitation of liability. *
|
||||
// * *
|
||||
// * This code implementation is the result of the scientific and *
|
||||
// * technical work of the GEANT4 collaboration. *
|
||||
// * By using, copying, modifying or distributing the software (or *
|
||||
// * any work based on the software) you agree to acknowledge its *
|
||||
// * use in resulting scientific publications, and indicate your *
|
||||
// * acceptance of all terms of the Geant4 Software license. *
|
||||
// ********************************************************************
|
||||
//
|
||||
// $Id: G4DensityEffectData.hh,v 1.7 2009/12/01 08:24:21 gcosmo Exp $
|
||||
// GEANT4 tag $Name: geant4-09-03 $
|
||||
|
||||
//---------------------------------------------------------------------------
|
||||
//
|
||||
// GEANT4 Class file
|
||||
//
|
||||
// Description: Data on density effect
|
||||
//
|
||||
// Authors: A.Bagulya, A.Ivanchenko 28.10.2009
|
||||
//
|
||||
// Modifications:
|
||||
//
|
||||
//
|
||||
//
|
||||
//----------------------------------------------------------------------------
|
||||
//
|
||||
// Data are taken from:
|
||||
// R.M. Sternheimer et al. Density Effect for the Ionization Loss of Charged
|
||||
// Particles in Various Substances. Atom. Data Nucl. Data Tabl. 30 (1984) 261-271.
|
||||
|
||||
#ifndef DensityEffectData_h
|
||||
#define DensityEffectData_h 1
|
||||
|
||||
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
|
||||
|
||||
#include "globals.hh"
|
||||
#include <vector>
|
||||
|
||||
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
|
||||
|
||||
const G4int NDENSDATA = 278;
|
||||
const G4int NDENSARRAY = 9;
|
||||
const G4int NDENSELEM = 98;
|
||||
|
||||
class G4DensityEffectData
|
||||
{
|
||||
public:
|
||||
|
||||
G4DensityEffectData();
|
||||
|
||||
~G4DensityEffectData();
|
||||
|
||||
// return index by Z, -1 if material is not in the table
|
||||
G4int GetIndex(const G4int Z);
|
||||
|
||||
// return index by material name, -1 if material is not in the table
|
||||
G4int GetIndex(const G4String& matName);
|
||||
|
||||
// printout data for material
|
||||
void PrintData(const G4String& matName);
|
||||
|
||||
// printout all data
|
||||
void DumpData();
|
||||
|
||||
// Access to the data via index
|
||||
inline G4double GetPlasmaEnergy(G4int idx);
|
||||
inline G4double GetAdjustmentFactor(G4int idx);
|
||||
inline G4double GetCdensity(G4int idx);
|
||||
inline G4double GetX0density(G4int idx);
|
||||
inline G4double GetX1density(G4int idx);
|
||||
inline G4double GetAdensity(G4int idx);
|
||||
inline G4double GetMdensity(G4int idx);
|
||||
inline G4double GetDelta0density(G4int idx);
|
||||
inline G4double GetErrorDensity(G4int idx);
|
||||
|
||||
private:
|
||||
|
||||
void Initialize();
|
||||
|
||||
void AddMaterial(G4double* val, const G4String& matName);
|
||||
|
||||
// Assignment operator and copy constructor
|
||||
G4DensityEffectData & operator=(const G4DensityEffectData &right);
|
||||
G4DensityEffectData(const G4DensityEffectData&);
|
||||
|
||||
G4double data[NDENSDATA][NDENSARRAY];
|
||||
std::vector<G4String> names;
|
||||
G4int indexZ[NDENSELEM];
|
||||
|
||||
G4int index;
|
||||
|
||||
};
|
||||
|
||||
inline G4double G4DensityEffectData::GetPlasmaEnergy(G4int idx)
|
||||
{
|
||||
G4double x = DBL_MAX;
|
||||
if(idx >= 0 && idx < NDENSDATA) { x = data[idx][0]; }
|
||||
return x;
|
||||
}
|
||||
|
||||
inline G4double G4DensityEffectData::GetAdjustmentFactor(G4int idx)
|
||||
{
|
||||
G4double x = DBL_MAX;
|
||||
if(idx >= 0 && idx < NDENSDATA) { x = data[idx][1]; }
|
||||
return x;
|
||||
}
|
||||
|
||||
inline G4double G4DensityEffectData::GetCdensity(G4int idx)
|
||||
{
|
||||
G4double x = DBL_MAX;
|
||||
if(idx >= 0 && idx < NDENSDATA) { x = data[idx][2]; }
|
||||
return x;
|
||||
}
|
||||
|
||||
inline G4double G4DensityEffectData::GetX0density(G4int idx)
|
||||
{
|
||||
G4double x = DBL_MAX;
|
||||
if(idx >= 0 && idx < NDENSDATA) { x = data[idx][3]; }
|
||||
return x;
|
||||
}
|
||||
|
||||
inline G4double G4DensityEffectData::GetX1density(G4int idx)
|
||||
{
|
||||
G4double x = DBL_MAX;
|
||||
if(idx >= 0 && idx < NDENSDATA) { x = data[idx][4]; }
|
||||
return x;
|
||||
}
|
||||
|
||||
inline G4double G4DensityEffectData::GetAdensity(G4int idx)
|
||||
{
|
||||
G4double x = DBL_MAX;
|
||||
if(idx >= 0 && idx < NDENSDATA) { x = data[idx][5]; }
|
||||
return x;
|
||||
}
|
||||
|
||||
inline G4double G4DensityEffectData::GetMdensity(G4int idx)
|
||||
{
|
||||
G4double x = DBL_MAX;
|
||||
if(idx >= 0 && idx < NDENSDATA) { x = data[idx][6]; }
|
||||
return x;
|
||||
}
|
||||
|
||||
inline G4double G4DensityEffectData::GetDelta0density(G4int idx)
|
||||
{
|
||||
G4double x = DBL_MAX;
|
||||
if(idx >= 0 && idx < NDENSDATA) { x = data[idx][7]; }
|
||||
return x;
|
||||
}
|
||||
|
||||
inline G4double G4DensityEffectData::GetErrorDensity(G4int idx)
|
||||
{
|
||||
G4double x = DBL_MAX;
|
||||
if(idx >= 0 && idx < NDENSDATA) { x = data[idx][8]; }
|
||||
return x;
|
||||
}
|
||||
|
||||
|
||||
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
|
||||
|
||||
#endif
|
||||
|
||||
Reference in New Issue
Block a user