Geant4 11.2.2
Toolkit for the simulation of the passage of particles through matter
Loading...
Searching...
No Matches
G4DNAPTBExcitationStructure Class Reference

#include <G4DNAPTBExcitationStructure.hh>

Public Member Functions

 G4DNAPTBExcitationStructure ()
 
 ~G4DNAPTBExcitationStructure ()=default
 
G4double ExcitationEnergy (const G4int &ExcLevel, const size_t &materialID)
 
G4int NumberOfExcLevels (const size_t &materialID)
 
 G4DNAPTBExcitationStructure (const G4DNAPTBExcitationStructure &)=delete
 
G4DNAPTBExcitationStructureoperator= (const G4DNAPTBExcitationStructure &right)=delete
 

Detailed Description

Definition at line 34 of file G4DNAPTBExcitationStructure.hh.

Constructor & Destructor Documentation

◆ G4DNAPTBExcitationStructure() [1/2]

G4DNAPTBExcitationStructure::G4DNAPTBExcitationStructure ( )

Definition at line 31 of file G4DNAPTBExcitationStructure.cc.

32{
33 fpN2 = G4Material::GetMaterial("N2", false);
34
35 // taken directly from PTra code by MPietrzak
36 if (fpN2 != nullptr) {
37 auto index = fpN2->GetIndex();
38 energyConstant[index].push_back(1.85 * eV);
39 energyConstant[index].push_back(2.15 * eV);
40 energyConstant[index].push_back(8.00 * eV);
41 energyConstant[index].push_back(8.50 * eV);
42 energyConstant[index].push_back(8.60 * eV);
43 energyConstant[index].push_back(11.05 * eV);
44 energyConstant[index].push_back(11.79 * eV);
45 energyConstant[index].push_back(11.90 * eV);
46 energyConstant[index].push_back(12.25 * eV);
47 energyConstant[index].push_back(12.50 * eV);
48 energyConstant[index].push_back(13.01 * eV);
49 energyConstant[index].push_back(13.19 * eV);
50 energyConstant[index].push_back(13.30 * eV);
51 energyConstant[index].push_back(14.33 * eV);
52 energyConstant[index].push_back(14.84 * eV);
53 energyConstant[index].push_back(15.18 * eV);
54 energyConstant[index].push_back(15.70 * eV);
55 energyConstant[index].push_back(15.75 * eV);
56 energyConstant[index].push_back(15.86 * eV);
57 energyConstant[index].push_back(17.36 * eV);
58 energyConstant[index].push_back(17.95 * eV);
59 energyConstant[index].push_back(19.77 * eV);
60 energyConstant[index].push_back(20.79 * eV);
61 energyConstant[index].push_back(20.87 * eV);
62 energyConstant[index].push_back(22.27 * eV);
63 energyConstant[index].push_back(22.83 * eV);
64 energyConstant[index].push_back(37.19 * eV);
65 energyConstant[index].push_back(38.67 * eV);
66 energyConstant[index].push_back(39.23 * eV);
67 }
68
69 for (const auto& [index, levels] : energyConstant) {
70 nExcLevels[index] = (G4int)levels.size();
71 }
72}
int G4int
Definition G4Types.hh:85
std::size_t GetIndex() const
static G4Material * GetMaterial(const G4String &name, G4bool warning=true)

◆ ~G4DNAPTBExcitationStructure()

G4DNAPTBExcitationStructure::~G4DNAPTBExcitationStructure ( )
default

◆ G4DNAPTBExcitationStructure() [2/2]

G4DNAPTBExcitationStructure::G4DNAPTBExcitationStructure ( const G4DNAPTBExcitationStructure & )
delete

Member Function Documentation

◆ ExcitationEnergy()

G4double G4DNAPTBExcitationStructure::ExcitationEnergy ( const G4int & ExcLevel,
const size_t & materialID )

Definition at line 74 of file G4DNAPTBExcitationStructure.cc.

76{
77 size_t matNameModif = ReplaceMaterial(materialID);
78
79 // check if the material exist in the map
80 if (energyConstant.find(matNameModif) == energyConstant.end()) {
81 std::ostringstream oss;
82 oss << "Material name was not found in energyConstantMap. Problematic material is: "
83 << matNameModif;
85 "G4DNAPTBExcitationStructure::ExcitationEnergy", "em0002", FatalException, oss.str().c_str());
86 }
87
88 G4double excitation = 0.;
89
90 if (ExcLevel >= 0 && ExcLevel < nExcLevels[matNameModif])
91 excitation = energyConstant[matNameModif][ExcLevel];
92
93 return excitation;
94}
@ FatalException
void G4Exception(const char *originOfException, const char *exceptionCode, G4ExceptionSeverity severity, const char *description)
double G4double
Definition G4Types.hh:83

Referenced by G4DNAPTBExcitationModel::SampleSecondaries().

◆ NumberOfExcLevels()

G4int G4DNAPTBExcitationStructure::NumberOfExcLevels ( const size_t & materialID)

Definition at line 96 of file G4DNAPTBExcitationStructure.cc.

97{
98 auto matNameModif = ReplaceMaterial(matID);
99
100 // check if the material exist in the map
101 if (nExcLevels.find(matNameModif) == nExcLevels.end()) {
102 std::ostringstream oss;
103 oss << "Material name was not found in energyConstantMap. Problematic material is: "
104 << matNameModif;
105 G4Exception("G4DNAPTBNDExcitationStructure::NumberOfExcLevels", "em0002", FatalException,
106 oss.str().c_str());
107 }
108
109 return nExcLevels[matNameModif];
110}

◆ operator=()

G4DNAPTBExcitationStructure & G4DNAPTBExcitationStructure::operator= ( const G4DNAPTBExcitationStructure & right)
delete

The documentation for this class was generated from the following files: