| 1 | //
|
|---|
| 2 | // ********************************************************************
|
|---|
| 3 | // * License and Disclaimer *
|
|---|
| 4 | // * *
|
|---|
| 5 | // * The Geant4 software is copyright of the Copyright Holders of *
|
|---|
| 6 | // * the Geant4 Collaboration. It is provided under the terms and *
|
|---|
| 7 | // * conditions of the Geant4 Software License, included in the file *
|
|---|
| 8 | // * LICENSE and available at http://cern.ch/geant4/license . These *
|
|---|
| 9 | // * include a list of copyright holders. *
|
|---|
| 10 | // * *
|
|---|
| 11 | // * Neither the authors of this software system, nor their employing *
|
|---|
| 12 | // * institutes,nor the agencies providing financial support for this *
|
|---|
| 13 | // * work make any representation or warranty, express or implied, *
|
|---|
| 14 | // * regarding this software system or assume any liability for its *
|
|---|
| 15 | // * use. Please see the license in the file LICENSE and URL above *
|
|---|
| 16 | // * for the full disclaimer and the limitation of liability. *
|
|---|
| 17 | // * *
|
|---|
| 18 | // * This code implementation is the result of the scientific and *
|
|---|
| 19 | // * technical work of the GEANT4 collaboration. *
|
|---|
| 20 | // * By using, copying, modifying or distributing the software (or *
|
|---|
| 21 | // * any work based on the software) you agree to acknowledge its *
|
|---|
| 22 | // * use in resulting scientific publications, and indicate your *
|
|---|
| 23 | // * acceptance of all terms of the Geant4 Software license. *
|
|---|
| 24 | // ********************************************************************
|
|---|
| 25 | //
|
|---|
| 26 | // -------------------------------------------------------------------
|
|---|
| 27 | //
|
|---|
| 28 | // GEANT4 Class file
|
|---|
| 29 | //
|
|---|
| 30 | //
|
|---|
| 31 | // File name: G4hShellCrossSectionDoubleExp
|
|---|
| 32 | //
|
|---|
| 33 | // Author: Simona Saliceti (simona.saliceti@ge.infn.it)
|
|---|
| 34 | //
|
|---|
| 35 | // History:
|
|---|
| 36 | // -----------
|
|---|
| 37 | // 31/05/2004 Simona Saliceti 1st implementation
|
|---|
| 38 | // -------------------------------------------------------------------
|
|---|
| 39 | // Class Description:
|
|---|
| 40 | // Empiric Model for K shell cross sections in proton ionisation
|
|---|
| 41 | // 2nd iteration, refined model at low energy
|
|---|
| 42 | // Based on Fitted empirical Reference Cross Sections for K-Shell Ionization
|
|---|
| 43 | // by Protons by H.Paul and J.Sacher, At. Data Nucl. Data Tables 42 (1989) 105
|
|---|
| 44 | //
|
|---|
| 45 | // -------------------------------------------------------------------
|
|---|
| 46 | // $Id: G4hShellCrossSectionDoubleExp.hh,v 1.3 2006/06/29 19:38:12 gunter Exp $
|
|---|
| 47 | // GEANT4 tag $Name: geant4-09-03-cand-01 $
|
|---|
| 48 |
|
|---|
| 49 | #ifndef G4HSHELLCROSSSECTIONDOUBLEEXP_HH
|
|---|
| 50 | #define G4HSHELLCROSSSECTIONDOUBLEEXP_HH 1
|
|---|
| 51 |
|
|---|
| 52 | #include "globals.hh"
|
|---|
| 53 | #include "G4VhShellCrossSection.hh"
|
|---|
| 54 | #include "G4hShellCrossSectionDoubleExpData.hh"
|
|---|
| 55 |
|
|---|
| 56 | class G4hShellCrossSectionDoubleExp : public G4VhShellCrossSection
|
|---|
| 57 | {
|
|---|
| 58 | public:
|
|---|
| 59 |
|
|---|
| 60 | G4hShellCrossSectionDoubleExp();
|
|---|
| 61 |
|
|---|
| 62 | virtual ~G4hShellCrossSectionDoubleExp();
|
|---|
| 63 |
|
|---|
| 64 | virtual std::vector<G4double> GetCrossSection(G4int Z,
|
|---|
| 65 | G4double incidentEnergy,
|
|---|
| 66 | G4double mass,
|
|---|
| 67 | G4double deltaEnergy,
|
|---|
| 68 | G4bool testFlag = false) const;
|
|---|
| 69 |
|
|---|
| 70 | void SetTotalCS(G4double);
|
|---|
| 71 |
|
|---|
| 72 | protected:
|
|---|
| 73 |
|
|---|
| 74 | virtual std::vector<G4double> Probabilities(G4int Z,
|
|---|
| 75 | G4double incidentEnergy,
|
|---|
| 76 | G4double mass,
|
|---|
| 77 | G4double deltaEnergy) const;
|
|---|
| 78 |
|
|---|
| 79 |
|
|---|
| 80 | private:
|
|---|
| 81 |
|
|---|
| 82 | G4double GetCrossSectionDoubleExp(G4int Z,
|
|---|
| 83 | G4double incidentEnergy) const;
|
|---|
| 84 |
|
|---|
| 85 | // Hide copy constructor and assignment operator
|
|---|
| 86 | G4hShellCrossSectionDoubleExp(const G4hShellCrossSectionDoubleExp&);
|
|---|
| 87 | G4hShellCrossSectionDoubleExp & operator = (const G4hShellCrossSectionDoubleExp &right);
|
|---|
| 88 | G4hShellCrossSectionDoubleExpData* kShellData;
|
|---|
| 89 |
|
|---|
| 90 | G4double atomTotalCrossSection;
|
|---|
| 91 | };
|
|---|
| 92 |
|
|---|
| 93 | #endif
|
|---|