Geant4 9.6.0
Toolkit for the simulation of the passage of particles through matter
Loading...
Searching...
No Matches
G4MuonMinusCaptureAtRest.hh
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// $Id$
27//
28// G4MuonMinusCaptureAtRest physics process
29// Larry Felawka (TRIUMF) and Art Olin (TRIUMF) April 1998
30//---------------------------------------------------------------------
31//
32// Class Description:
33//
34// Process for nuclear capture of mu- at rest takes into account Fermi
35// model of muon capture in compounds, simplified EM cascade model, muon
36// decay from K-shell, and muon nucleus reaction.
37
38//
39// Modifications:
40// 18/08/2000 V.Ivanchenko Update description, new method to simulate capture
41// 12/12/2003 H.P.Wellisch Completly rewrite mu-nuclear part
42// 17/05/2006 V.Ivanchenko Cleanup
43// 14/11/2006 V.Ivanchenko Remove implementation of GetPhysicsInteractionLength
44//
45//-----------------------------------------------------------------------------
46
47#ifndef G4MuonMinusCaptureAtRest_h
48#define G4MuonMinusCaptureAtRest_h 1
49
50#include "globals.hh"
51#include "G4VRestProcess.hh"
52#include "G4VParticleChange.hh"
57#include "G4MuonMinus.hh"
59
63
65
66{
67public:
68
69 G4MuonMinusCaptureAtRest(const G4String& processName ="muMinusCaptureAtRest",
70 G4ProcessType aType = fHadronic );
71
73
75
76 virtual void PreparePhysicsTable(const G4ParticleDefinition&);
77
78 virtual void BuildPhysicsTable(const G4ParticleDefinition&);
79
80 virtual G4VParticleChange* AtRestDoIt(const G4Track&, const G4Step&);
81
83 {return 0;};
84
85private:
86
87 G4ReactionProductVector* DoMuCapture();
88
89 // hide assignment operator as private
92
93 G4int nCascade;
94 G4double targetZ;
95 G4double targetA;
96 G4double targetMass;
97
98 G4StopElementSelector* pSelector;
99 G4MuMinusCaptureCascade* pEMCascade;
100 G4GHEKinematicsVector* Cascade;
101 G4Fancy3DNucleus* theN;
102 G4ExcitationHandler* theHandler;
103
104 G4bool isInitialised;
105
106};
107
108#endif
109
110
111
112
113
114
G4ForceCondition
G4ProcessType
@ fHadronic
std::vector< G4ReactionProduct * > G4ReactionProductVector
double G4double
Definition: G4Types.hh:64
int G4int
Definition: G4Types.hh:66
bool G4bool
Definition: G4Types.hh:67
virtual G4bool IsApplicable(const G4ParticleDefinition &)
virtual void PreparePhysicsTable(const G4ParticleDefinition &)
G4double GetMeanLifeTime(const G4Track &, G4ForceCondition *)
virtual G4VParticleChange * AtRestDoIt(const G4Track &, const G4Step &)
virtual void BuildPhysicsTable(const G4ParticleDefinition &)
Definition: G4Step.hh:78