Geant4 11.2.2
Toolkit for the simulation of the passage of particles through matter
Loading...
Searching...
No Matches
G4SpinDecayPhysics.cc
Go to the documentation of this file.
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//
29// ClassName: G4SpinDecayPhysics
30//
31// Author: 2015 P. Gumplinger
32//
33// Modified:
34//
35//----------------------------------------------------------------------------
36//
37#include "G4SpinDecayPhysics.hh"
38
40#include "G4ProcessManager.hh"
41
42#include "G4ParticleTypes.hh"
43#include "G4ParticleTable.hh"
44
45#include "G4ProcessTable.hh"
46
47#include "G4DecayTable.hh"
50
51#include "G4EmBuilder.hh"
52#include "G4PhysListUtil.hh"
53
54// factory
56//
58
63
69
73
75{
76 // minimal set of particles for EM physics
78
81
82 G4DecayTable* MuonPlusDecayTable = new G4DecayTable();
83 MuonPlusDecayTable -> Insert(new
84 G4MuonDecayChannelWithSpin("mu+",0.986));
85 MuonPlusDecayTable -> Insert(new
87 G4MuonPlus::MuonPlusDefinition() -> SetDecayTable(MuonPlusDecayTable);
88
89 G4DecayTable* MuonMinusDecayTable = new G4DecayTable();
90 MuonMinusDecayTable -> Insert(new
91 G4MuonDecayChannelWithSpin("mu-",0.986));
92 MuonMinusDecayTable -> Insert(new
94 G4MuonMinus::MuonMinusDefinition() -> SetDecayTable(MuonMinusDecayTable);
95}
96
98{
99 G4DecayWithSpin* decayWithSpin = new G4DecayWithSpin();
100
102
103 G4VProcess* decay;
104 decay = processTable->FindProcess("Decay",G4MuonPlus::MuonPlus());
105
107
108 if (fManager) {
109 if (decay) fManager->RemoveProcess(decay);
110 fManager->AddProcess(decayWithSpin);
111 // set ordering for PostStepDoIt and AtRestDoIt
112 fManager ->SetProcessOrdering(decayWithSpin, idxPostStep);
113 fManager ->SetProcessOrdering(decayWithSpin, idxAtRest);
114 }
115
117
118 if (fManager) {
119 if (decay) fManager->RemoveProcess(decay);
120 fManager->AddProcess(decayWithSpin);
121 // set ordering for PostStepDoIt and AtRestDoIt
122 fManager ->SetProcessOrdering(decayWithSpin, idxPostStep);
123 fManager ->SetProcessOrdering(decayWithSpin, idxAtRest);
124 }
125
127
128 decay = processTable->FindProcess("Decay",G4PionPlus::PionPlus());
129
131
132 if (fManager) {
133 if (decay) fManager->RemoveProcess(decay);
134 fManager->AddProcess(poldecay);
135 // set ordering for PostStepDoIt and AtRestDoIt
136 fManager ->SetProcessOrdering(poldecay, idxPostStep);
137 fManager ->SetProcessOrdering(poldecay, idxAtRest);
138 }
139
140 decay = processTable->FindProcess("Decay",G4PionMinus::PionMinus());
141
143
144 if (fManager) {
145 if (decay) fManager->RemoveProcess(decay);
146 fManager->AddProcess(poldecay);
147 // set ordering for PostStepDoIt and AtRestDoIt
148 fManager ->SetProcessOrdering(poldecay, idxPostStep);
149 fManager ->SetProcessOrdering(poldecay, idxAtRest);
150 }
151}
#define G4_DECLARE_PHYSCONSTR_FACTORY(physics_constructor)
@ idxPostStep
@ idxAtRest
int G4int
Definition G4Types.hh:85
static void ConstructMinimalEmSet()
static G4MuonMinus * MuonMinus()
static G4MuonMinus * MuonMinusDefinition()
static G4MuonPlus * MuonPlusDefinition()
Definition G4MuonPlus.cc:93
static G4MuonPlus * MuonPlus()
Definition G4MuonPlus.cc:98
G4ProcessManager * GetProcessManager() const
static void InitialiseParameters()
static G4PionMinus * PionMinus()
static G4PionPlus * PionPlus()
Definition G4PionPlus.cc:93
void SetProcessOrdering(G4VProcess *aProcess, G4ProcessVectorDoItIndex idDoIt, G4int ordDoIt=ordDefault)
G4VProcess * RemoveProcess(G4VProcess *aProcess)
G4int AddProcess(G4VProcess *aProcess, G4int ordAtRestDoIt=ordInActive, G4int ordAlongSteptDoIt=ordInActive, G4int ordPostStepDoIt=ordInActive)
static G4ProcessTable * GetProcessTable()
G4VProcess * FindProcess(const G4String &processName, const G4String &particleName) const
void ConstructParticle() override
G4SpinDecayPhysics(G4int ver=1)
void ConstructProcess() override