95 lines
3.3 KiB
C++
95 lines
3.3 KiB
C++
//
|
|
// ********************************************************************
|
|
// * DISCLAIMER *
|
|
// * *
|
|
// * The following disclaimer summarizes all the specific disclaimers *
|
|
// * of contributors to this software. The specific disclaimers,which *
|
|
// * govern, are listed with their locations in: *
|
|
// * http://cern.ch/geant4/license *
|
|
// * *
|
|
// * 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. *
|
|
// * *
|
|
// * This code implementation is the intellectual property of the *
|
|
// * GEANT4 collaboration. *
|
|
// * By copying, distributing or modifying the Program (or any work *
|
|
// * based on the Program) you indicate your acceptance of this *
|
|
// * statement, and all its terms. *
|
|
// ********************************************************************
|
|
//
|
|
//
|
|
// $Id: G4eIonisationParameters.hh,v 1.6 2001/11/29 19:01:45 vnivanch Exp $
|
|
// GEANT4 tag $Name: geant4-05-00 $
|
|
//
|
|
// 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.
|
|
// Further documentation available from http://www.ge.infn.it/geant4/lowE
|
|
|
|
// -------------------------------------------------------------------
|
|
|
|
#ifndef G4IONISATIONPARAMETERS_HH
|
|
#define G4IONISATIONPARAMETERS_HH 1
|
|
|
|
#include "globals.hh"
|
|
#include "G4DataVector.hh"
|
|
#include "g4std/map"
|
|
|
|
class G4VDataSetAlgorithm;
|
|
class G4VEMDataSet;
|
|
|
|
class G4eIonisationParameters {
|
|
|
|
public:
|
|
|
|
G4eIonisationParameters(G4int minZ = 1, G4int maxZ = 99);
|
|
|
|
~G4eIonisationParameters();
|
|
|
|
G4double Parameter(G4int Z, G4int shellIndex,
|
|
G4int parameterIndex, G4double e) const;
|
|
|
|
G4double Excitation(G4int Z, G4double e) const;
|
|
|
|
void PrintData() const;
|
|
|
|
private:
|
|
|
|
// Hide copy constructor and assignment operator
|
|
G4eIonisationParameters(const G4eIonisationParameters&);
|
|
G4eIonisationParameters & operator=(const G4eIonisationParameters &right);
|
|
|
|
void LoadData();
|
|
|
|
G4int zMin;
|
|
G4int zMax;
|
|
|
|
G4DataVector activeZ;
|
|
|
|
// Parameters of the energy spectra
|
|
G4std::map<G4int,G4VEMDataSet*,G4std::less<G4int> > param;
|
|
G4std::map<G4int,G4VEMDataSet*,G4std::less<G4int> > excit;
|
|
|
|
size_t length;
|
|
};
|
|
|
|
#endif
|