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

#include <G4FluoTransition.hh>

Public Member Functions

 G4FluoTransition (G4int, const std::vector< G4int > &, const G4DataVector &, const G4DataVector &)
 
 ~G4FluoTransition ()
 
const std::vector< G4int > & OriginatingShellIds () const
 Returns the identities of the originating shells for the transitions.
 
const G4DataVectorTransitionEnergies () const
 Return the energies of the transitions.
 
const G4DataVectorTransitionProbabilities () const
 Return the probabilities of the transitions.
 
G4int FinalShellId () const
 Return the identity if the vacancy.
 
G4int OriginatingShellId (G4int index) const
 Given the index of the originating shells returns its identity.
 
G4double TransitionEnergy (G4int index) const
 
G4double TransitionProbability (G4int index) const
 

Detailed Description

Definition at line 50 of file G4FluoTransition.hh.

Constructor & Destructor Documentation

◆ G4FluoTransition()

G4FluoTransition::G4FluoTransition ( G4int finalShell,
const std::vector< G4int > & ids,
const G4DataVector & energies,
const G4DataVector & prob )
explicit

Definition at line 40 of file G4FluoTransition.cc.

44 :originatingShellIds(ids),
45 transitionEnergies(energies),
46 transitionProbabilities(prob),
47 finalShellId(finalShell)
48{ }

◆ ~G4FluoTransition()

G4FluoTransition::~G4FluoTransition ( )
inline

Definition at line 57 of file G4FluoTransition.hh.

57{;};

Member Function Documentation

◆ FinalShellId()

G4int G4FluoTransition::FinalShellId ( ) const

Return the identity if the vacancy.

Definition at line 69 of file G4FluoTransition.cc.

70{
71 return finalShellId;
72}

◆ OriginatingShellId()

G4int G4FluoTransition::OriginatingShellId ( G4int index) const

Given the index of the originating shells returns its identity.

Definition at line 75 of file G4FluoTransition.cc.

76{
77 return originatingShellIds[index];
78}

◆ OriginatingShellIds()

const std::vector< G4int > & G4FluoTransition::OriginatingShellIds ( ) const

Returns the identities of the originating shells for the transitions.

All the data stored and provided by this class are relative to a given vacancy, whose identity is provided by the FinalShellId() method, in an atom of a given material

Definition at line 51 of file G4FluoTransition.cc.

52{
53 return originatingShellIds;
54}

◆ TransitionEnergies()

const G4DataVector & G4FluoTransition::TransitionEnergies ( ) const

Return the energies of the transitions.

Definition at line 57 of file G4FluoTransition.cc.

58{
59 return transitionEnergies;
60}

◆ TransitionEnergy()

G4double G4FluoTransition::TransitionEnergy ( G4int index) const

Given the index of the originating shells returns the energy of the transition starting from it

Definition at line 81 of file G4FluoTransition.cc.

82{
83 return transitionEnergies[index];
84}

◆ TransitionProbabilities()

const G4DataVector & G4FluoTransition::TransitionProbabilities ( ) const

Return the probabilities of the transitions.

Definition at line 63 of file G4FluoTransition.cc.

64{
65 return transitionProbabilities;
66}

Referenced by G4AtomicTransitionManager::TotalRadiativeTransitionProbability().

◆ TransitionProbability()

G4double G4FluoTransition::TransitionProbability ( G4int index) const

Given the index of the originating shells returns the probability of the transition starting from it

Definition at line 87 of file G4FluoTransition.cc.

88{
89 return transitionProbabilities[index];
90}

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