source: trunk/source/processes/hadronic/stopping/include/G4MuonMinusCaptureAtRest.hh @ 898

Last change on this file since 898 was 819, checked in by garnier, 16 years ago

import all except CVS

File size: 3.9 KB
Line 
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: G4MuonMinusCaptureAtRest.hh,v 1.20 2007/11/15 10:05:13 vnivanch Exp $
27// GEANT4 tag $Name:  $
28//
29//  G4MuonMinusCaptureAtRest physics process
30//  Larry Felawka (TRIUMF) and Art Olin (TRIUMF) April 1998
31//---------------------------------------------------------------------
32//
33// Class Description:
34//
35// Process for nuclear capture of mu- at rest takes into account Fermi
36// model of muon capture in compounds, simplified EM cascade model, muon
37// decay from K-shell, and muon nucleus reaction.
38
39//
40// Modifications:
41// 18/08/2000  V.Ivanchenko Update description, new method to simulate capture
42// 12/12/2003  H.P.Wellisch Completly rewrite mu-nuclear part
43// 17/05/2006  V.Ivanchenko Cleanup
44// 14/11/2006  V.Ivanchenko Remove implementation of GetPhysicsInteractionLength
45//
46//-----------------------------------------------------------------------------
47
48#ifndef G4MuonMinusCaptureAtRest_h
49#define G4MuonMinusCaptureAtRest_h 1
50 
51#include "globals.hh"
52#include "G4VRestProcess.hh"
53#include "G4VParticleChange.hh"
54#include "G4ParticleDefinition.hh"
55#include "G4StopElementSelector.hh"
56#include "G4MuMinusCaptureCascade.hh"
57#include "G4ReactionProductVector.hh"
58#include "G4MuonMinus.hh"
59
60class G4Fancy3DNucleus;
61class G4ExcitationHandler;
62class G4GHEKinematicsVector;
63
64class G4MuonMinusCaptureAtRest : public G4VRestProcess
65 
66{ 
67public:
68 
69  G4MuonMinusCaptureAtRest(const G4String& processName ="muMinusCaptureAtRest", 
70                           G4ProcessType   aType = fHadronic );
71
72  virtual ~G4MuonMinusCaptureAtRest();
73
74  G4bool IsApplicable(const G4ParticleDefinition&);
75
76  void BuildPhysicsTable(const G4ParticleDefinition&) 
77  {};
78
79  G4VParticleChange* AtRestDoIt(const G4Track&, const G4Step&); 
80
81  G4double GetMeanLifeTime(const G4Track&, G4ForceCondition*) 
82  {return 0;};
83
84private:
85
86  G4ReactionProductVector* DoMuCapture();
87
88  // hide assignment operator as private
89  G4MuonMinusCaptureAtRest& operator=(const G4MuonMinusCaptureAtRest &right);
90  G4MuonMinusCaptureAtRest(const G4MuonMinusCaptureAtRest& );
91   
92  G4int      nCascade;
93  G4double   targetZ;
94  G4double   targetA;
95  G4double   targetMass;
96
97  G4StopElementSelector*   pSelector;
98  G4MuMinusCaptureCascade* pEMCascade;
99  G4GHEKinematicsVector*   Cascade;
100  G4Fancy3DNucleus*        theN;
101  G4ExcitationHandler*     theHandler;
102
103  G4bool isInitialised;
104
105};
106
107#endif
108 
109
110
111
112
113
Note: See TracBrowser for help on using the repository browser.