85 lines
3.2 KiB
C++
85 lines
3.2 KiB
C++
//
|
|
// ********************************************************************
|
|
// * 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. *
|
|
// ********************************************************************
|
|
//
|
|
//
|
|
//
|
|
// Author: Maria Grazia Pia (Maria.Grazia.Pia@cern.ch)
|
|
// V. Ivanchenko
|
|
// Values of the parameters from A. Forti's fit
|
|
//
|
|
// History:
|
|
// -----------
|
|
// 31 Jul 2001 MGP Created
|
|
// 12.09.01 V.Ivanchenko Add param and interpolation of parametersVI
|
|
// 10.10.2001 MGP Revision to improve code quality and
|
|
// consistency with design
|
|
// 29.11.01 V.Ivanchenko Parametrisation is updated
|
|
//
|
|
// -------------------------------------------------------------------
|
|
|
|
// Class description:
|
|
// Low Energy Electromagnetic Physics
|
|
// Set of parameters for LowEnergyIonisation described spectrum
|
|
// of delta-electrons retrieved from EEDL database.
|
|
// -------------------------------------------------------------------
|
|
|
|
#ifndef G4IONISATIONPARAMETERS_HH
|
|
#define G4IONISATIONPARAMETERS_HH 1
|
|
|
|
#include "globals.hh"
|
|
#include "G4DataVector.hh"
|
|
#include <map>
|
|
|
|
class G4VDataSetAlgorithm;
|
|
class G4VEMDataSet;
|
|
|
|
class G4eIonisationParameters {
|
|
|
|
public:
|
|
explicit G4eIonisationParameters();
|
|
|
|
~G4eIonisationParameters();
|
|
|
|
G4double Parameter(G4int Z, G4int shellIndex,
|
|
G4int parameterIndex, G4double e) const;
|
|
G4double Excitation(G4int Z, G4double e) const;
|
|
void PrintData() const;
|
|
|
|
G4eIonisationParameters(const G4eIonisationParameters&) = delete;
|
|
G4eIonisationParameters & operator=(const G4eIonisationParameters &right) = delete;
|
|
|
|
private:
|
|
void LoadData();
|
|
|
|
G4DataVector activeZ;
|
|
// Parameters of the energy spectra
|
|
std::map<G4int,G4VEMDataSet*,std::less<G4int> > param;
|
|
std::map<G4int,G4VEMDataSet*,std::less<G4int> > excit;
|
|
|
|
size_t length = 24;
|
|
};
|
|
|
|
#endif
|