83 anaPIXEshellCS =
nullptr;
84 PIXEshellCS =
nullptr;
85 ePIXEshellCS =
nullptr;
96 delete anaPIXEshellCS;
106 transitionManager->Initialise();
109 if(!anaPIXEshellCS) {
113 G4cout <<
"### === G4UAtomicDeexcitation::InitialiseForNewRun()" <<
G4endl;
120 if(PIXEshellCS && namePIXExsModel != PIXEshellCS->GetName())
123 PIXEshellCS =
nullptr;
128 if (namePIXExsModel ==
"ECPSSR_FormFactor")
132 else if(namePIXExsModel ==
"ECPSSR_ANSTO")
136 else if(namePIXExsModel ==
"Empirical")
143 if(ePIXEshellCS && namePIXExsElectronModel != ePIXEshellCS->GetName())
146 ePIXEshellCS =
nullptr;
150 if(
nullptr == ePIXEshellCS)
152 if(namePIXExsElectronModel ==
"Empirical")
156 else if(namePIXExsElectronModel ==
"ECPSSR_Analytical")
160 else if (namePIXExsElectronModel ==
"Penelope")
181 return transitionManager->Shell(Z, (std::size_t)shell);
187 std::vector<G4DynamicParticle*>* vectorOfParticles,
195 minGammaEnergy = gammaCut;
196 minElectronEnergy = eCut;
197 vacancyArray.clear();
201 G4int provShellId = 0;
220 provShellId = SelectTypeOfTransition(Z, givenShellId);
225 GenerateFluorescence(Z, givenShellId, provShellId);
227 else if (provShellId == -1)
229 aParticle = GenerateAuger(Z, givenShellId);
236 provShellId = SelectTypeOfTransition(Z,newShellId);
239 aParticle = GenerateFluorescence(Z,newShellId,provShellId);
241 else if ( provShellId == -1)
243 aParticle = GenerateAuger(Z, newShellId);
249 vectorOfParticles->push_back(aParticle);
251 else {provShellId = -2;}
253 while (provShellId > -2);
265 vacancyArray.push_back(givenShellId);
273 while(!vacancyArray.empty()){
275 givenShellId = vacancyArray[0];
276 provShellId = SelectTypeOfTransition(Z,givenShellId);
281 aParticle = GenerateFluorescence(Z,givenShellId,provShellId);
283 else if(provShellId == -1){
284 aParticle = GenerateAuger(Z, givenShellId);
288 vectorOfParticles->push_back(aParticle);
291 vacancyArray.erase(vacancyArray.begin());
314 if(Z > 93 || Z < 6 ) {
return xsec; }
318 if(pdef == theElectron || pdef == thePositron) {
319 xsec = ePIXEshellCS->CrossSection(Z,shellEnum,kineticEnergy,0.0,mat);
329 if (pdg != 2212 && pdg != 1000020040)
331 mass = proton_mass_c2;
332 escaled = kineticEnergy*mass/(pdef->
GetPDGMass());
335 q2 = emcorr->EffectiveChargeSquareRatio(pdef,mat,kineticEnergy);
343 xsec = PIXEshellCS->CrossSection(Z,shellEnum,escaled,mass,mat);
346 xsec = anaPIXEshellCS->CrossSection(Z,shellEnum,escaled,mass,mat);
349 if (q2) {xsec *= q2;}
358 minGammaEnergy = cut;
365 minElectronEnergy = cut;
382G4int G4UAtomicDeexcitation::SelectTypeOfTransition(
G4int Z,
G4int shellId)
388 G4int provShellId = -1;
390 G4int maxNumOfShells = transitionManager->NumberOfReachableShells(Z);
392 const G4FluoTransition* refShell =
393 transitionManager->ReachableShell(Z,maxNumOfShells-1);
398 if ( shellId <= refShell->FinalShellId())
400 while (shellId != transitionManager->ReachableShell(Z,shellNum)->FinalShellId())
402 if(shellNum ==maxNumOfShells-1)
412 const G4FluoTransition* aShell = transitionManager->ReachableShell(Z,shellNum);
423 while(transProb < trSize){
426 if(partialProb <= partSum)
446G4UAtomicDeexcitation::GenerateFluorescence(
G4int Z,
G4int shellId,
456 G4double newsinTh = std::sqrt((1.-newcosTh)*(1. + newcosTh));
459 G4double xDir = newsinTh*std::sin(newPhi);
460 G4double yDir = newsinTh*std::cos(newPhi);
466 G4int maxNumOfShells = transitionManager->NumberOfReachableShells(Z);
469 while (shellId != transitionManager->
470 ReachableShell(Z,shellNum)->FinalShellId())
472 if(shellNum == maxNumOfShells-1)
479 G4int transitionSize = (
G4int)transitionManager->
480 ReachableShell(Z,shellNum)->OriginatingShellIds().size();
486 while (provShellId != transitionManager->
487 ReachableShell(Z,shellNum)->OriginatingShellId(index))
489 if(index == transitionSize-1)
496 G4double transitionEnergy = transitionManager->
497 ReachableShell(Z,shellNum)->TransitionEnergy(index);
499 if (transitionEnergy < minGammaEnergy)
return nullptr;
503 newShellId = transitionManager->
504 ReachableShell(Z,shellNum)->OriginatingShellId(index);
506 G4DynamicParticle* newPart =
new G4DynamicParticle(
G4Gamma::Gamma(),
531 G4int maxNumOfShells = transitionManager->NumberOfReachableAugerShells(Z);
533 const G4AugerTransition* refAugerTransition =
534 transitionManager->ReachableAugerShell(Z,maxNumOfShells-1);
541 if ( shellId <= refAugerTransition->FinalShellId() )
546 G4int pippo = transitionManager->ReachableAugerShell(Z,shellNum)->FinalShellId();
547 if (shellId != pippo ) {
550 if(shellNum == maxNumOfShells)
556 while (shellId != (transitionManager->ReachableAugerShell(Z,shellNum)->FinalShellId()) );
563 G4int transitionLoopShellIndex = 0;
565 const G4AugerTransition* anAugerTransition =
566 transitionManager->ReachableAugerShell(Z,shellNum);
570 while (transitionLoopShellIndex < transitionSize) {
572 std::vector<G4int>::const_iterator
pos =
575 G4int transitionLoopShellId = *(
pos+transitionLoopShellIndex);
578 G4int augerIndex = 0;
580 if (augerIndex < numberOfPossibleAuger) {
584 transitionLoopShellId);
588 }
while (augerIndex < numberOfPossibleAuger);
590 ++transitionLoopShellIndex;
593 G4double totalVacancyAugerProbability = partSum;
596 G4int transitionRandomShellIndex = 0;
597 G4int transitionRandomShellId = 1;
598 G4int augerIndex = 0;
602 G4int numberOfPossibleAuger = 0;
605 while (transitionRandomShellIndex < transitionSize) {
607 std::vector<G4int>::const_iterator
pos =
610 transitionRandomShellId = *(
pos+transitionRandomShellIndex);
613 numberOfPossibleAuger = (
G4int)(anAugerTransition->
614 AugerTransitionProbabilities(transitionRandomShellId))->size();
616 while (augerIndex < numberOfPossibleAuger) {
618 transitionRandomShellId);
622 if (partSum >= (partialProb*totalVacancyAugerProbability) ) {
628 if (partSum >= (partialProb*totalVacancyAugerProbability) ) {
break;}
629 ++transitionRandomShellIndex;
641 G4double newsinTh = std::sqrt(1.-newcosTh*newcosTh);
644 G4double xDir = newsinTh*std::sin(newPhi);
645 G4double yDir = newsinTh*std::cos(newPhi);
654 if (transitionEnergy < minElectronEnergy) {
660 newShellId = transitionRandomShellId;
665 vacancyArray.push_back(newShellId);
670 newElectronDirection,
CLHEP::Hep3Vector G4ThreeVector
G4GLOB_DLL std::ostream G4cout
static G4int GetNumberOfShells(G4int Z)
static G4AtomicTransitionManager * Instance()
G4int AugerOriginatingShellId(G4int index, G4int startShellId) const
const G4DataVector * AugerTransitionProbabilities(G4int startShellId) const
G4double AugerTransitionEnergy(G4int index, G4int startShellId) const
const std::vector< G4int > * TransitionOriginatingShellIds() const
Returns the ids of the shells from wich an electron cuuld fill the vacancy in finalShellId.
G4double AugerTransitionProbability(G4int index, G4int startShellId) const
static G4Electron * Electron()
static G4EmParameters * Instance()
const G4String & PIXECrossSectionModel()
const G4String & PIXEElectronCrossSectionModel()
const G4DataVector & TransitionProbabilities() const
Return the probabilities of the transitions.
G4int OriginatingShellId(G4int index) const
Given the index of the originating shells returns its identity.
G4double TransitionProbability(G4int index) const
static G4LossTableManager * Instance()
G4EmCorrections * EmCorrections()
G4double GetPDGMass() const
G4int GetPDGEncoding() const
G4double GetPDGCharge() const
static G4Positron * Positron()
void SetCutForSecondaryPhotons(G4double cut)
Set threshold energy for fluorescence.
virtual ~G4UAtomicDeexcitation()
void GenerateParticles(std::vector< G4DynamicParticle * > *secVect, const G4AtomicShell *, G4int Z, G4double gammaCut, G4double eCut) override
generation of deexcitation for given atom, shell vacancy and cuts
G4double GetShellIonisationCrossSectionPerAtom(const G4ParticleDefinition *, G4int Z, G4AtomicShellEnumerator shell, G4double kinE, const G4Material *mat=nullptr) override
access or compute PIXE cross section
void InitialiseForNewRun() override
initialisation methods
void SetCutForAugerElectrons(G4double cut)
Set threshold energy for Auger electron production.
void InitialiseForExtraAtom(G4int Z) override
const G4AtomicShell * GetAtomicShell(G4int Z, G4AtomicShellEnumerator shell) override
G4double ComputeShellIonisationCrossSectionPerAtom(const G4ParticleDefinition *, G4int Z, G4AtomicShellEnumerator shell, G4double kinE, const G4Material *mat=nullptr) override
access or compute PIXE cross section
G4VAtomDeexcitation(const G4String &modname="Deexcitation")
G4bool IsAugerActive() const
G4bool IsFluoActive() const
G4bool IsAugerCascadeActive() const
G4bool IsPIXEActive() const