source: trunk/examples/advanced/gammaray_telescope/src/GammaRayTelMuonPhysics.cc @ 1309

Last change on this file since 1309 was 1230, checked in by garnier, 14 years ago

update to geant4.9.3

File size: 4.0 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//
27// $Id: GammaRayTelMuonPhysics.cc,v 1.8 2008/11/24 15:10:47 cirrone Exp $
28// GEANT4 tag $Name: geant4-09-03-cand-01 $
29//
30
31#include "GammaRayTelMuonPhysics.hh"
32
33#include "globals.hh"
34#include "G4ios.hh"
35#include "G4MuonPlus.hh"
36#include "G4TauPlus.hh"
37#include "G4TauMinus.hh"
38#include <iomanip>  
39
40
41#include "G4ParticleTypes.hh"
42
43
44GammaRayTelMuonPhysics::GammaRayTelMuonPhysics(const G4String& name)
45                   :  G4VPhysicsConstructor(name)
46{
47}
48
49GammaRayTelMuonPhysics::~GammaRayTelMuonPhysics()
50{
51}
52
53void GammaRayTelMuonPhysics::ConstructParticle()
54{
55
56}
57
58
59#include "G4ProcessManager.hh"
60
61void GammaRayTelMuonPhysics::ConstructProcess()
62{
63  G4ProcessManager * pManager = 0;
64
65  // Muon Plus Physics
66  pManager = G4MuonPlus::MuonPlus()->GetProcessManager();
67   // add processes
68  pManager->AddProcess(&fMuPlusIonisation, ordInActive,2, 2);
69
70  pManager->AddDiscreteProcess(&fMuPlusBremsstrahlung);
71
72  pManager->AddDiscreteProcess(&fMuPlusPairProduction);
73
74  pManager->AddProcess(&fMuPlusMultipleScattering);
75  pManager->SetProcessOrdering(&fMuPlusMultipleScattering, idxAlongStep,  1);
76  pManager->SetProcessOrdering(&fMuPlusMultipleScattering, idxPostStep,  1);
77
78  // Muon Minus Physics
79  pManager = G4MuonMinus::MuonMinus()->GetProcessManager();
80   // add processes
81  pManager->AddProcess(&fMuMinusIonisation, ordInActive,2, 2);
82
83  pManager->AddDiscreteProcess(&fMuMinusBremsstrahlung);
84
85  pManager->AddDiscreteProcess(&fMuMinusPairProduction);
86
87  pManager->AddProcess(&fMuMinusMultipleScattering);
88  pManager->SetProcessOrdering(&fMuMinusMultipleScattering, idxAlongStep,  1);
89  pManager->SetProcessOrdering(&fMuMinusMultipleScattering, idxPostStep,  1);
90  pManager->AddRestProcess(&fMuMinusCaptureAtRest);
91
92  // Tau Plus Physics
93  pManager = G4TauPlus::TauPlus()->GetProcessManager();
94   // add processes
95  pManager->AddProcess(&fTauPlusIonisation, ordInActive,2, 2);
96
97  pManager->AddProcess(&fTauPlusMultipleScattering);
98  pManager->SetProcessOrdering(&fTauPlusMultipleScattering, idxAlongStep,  1);
99  pManager->SetProcessOrdering(&fTauPlusMultipleScattering, idxPostStep,  1);
100
101  // Tau Minus Physics
102  pManager = G4TauMinus::TauMinus()->GetProcessManager();
103   // add processes
104  pManager->AddProcess(&fTauMinusIonisation, ordInActive,2, 2);
105
106  pManager->AddProcess(&fTauMinusMultipleScattering);
107  pManager->SetProcessOrdering(&fTauMinusMultipleScattering, idxAlongStep,  1);
108  pManager->SetProcessOrdering(&fTauMinusMultipleScattering, idxPostStep,  1);
109
110}
111
112
113
Note: See TracBrowser for help on using the repository browser.