Geant4.10
Main Page
Related Pages
Modules
Namespaces
Data Structures
Files
File List
Globals
All
Data Structures
Namespaces
Files
Functions
Variables
Typedefs
Enumerations
Enumerator
Friends
Macros
Groups
Pages
geant4.10.00.p01
examples
extended
electromagnetic
TestEm17
src
MuNuclearBuilder.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
/// \file electromagnetic/TestEm17/src/MuNuclearBuilder.cc
27
/// \brief Implementation of the MuNuclearBuilder class
28
//
29
//
30
// $Id: MuNuclearBuilder.cc 66241 2012-12-13 18:34:42Z gunter $
31
//
32
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
33
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
34
35
#include "
MuNuclearBuilder.hh
"
36
37
#include "
G4ParticleDefinition.hh
"
38
#include "
G4MuonPlus.hh
"
39
#include "
G4MuonMinus.hh
"
40
41
#include "
G4ProcessManager.hh
"
42
//#include "G4MuNuclearInteraction.hh"
43
//#include "G4PreCompoundModel.hh"
44
#include "
G4MuonNuclearProcess.hh
"
45
#include "
G4MuonVDNuclearModel.hh
"
46
47
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
48
49
MuNuclearBuilder::MuNuclearBuilder
(
const
G4String
&
name
)
50
:
G4VPhysicsConstructor
(name)
51
{}
52
53
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
54
55
MuNuclearBuilder::~MuNuclearBuilder
()
56
{}
57
58
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
59
60
void
MuNuclearBuilder::ConstructProcess
()
61
{
62
G4ProcessManager
* pManager = 0;
63
64
G4MuonNuclearProcess
* muNucProcess =
new
G4MuonNuclearProcess
();
65
G4MuonVDNuclearModel
* muNucModel =
new
G4MuonVDNuclearModel
();
66
muNucProcess->
RegisterMe
(muNucModel);
67
68
pManager =
G4MuonPlus::MuonPlus
()->
GetProcessManager
();
69
pManager->
AddDiscreteProcess
(muNucProcess);
70
71
pManager =
G4MuonMinus::MuonMinus
()->
GetProcessManager
();
72
pManager->
AddDiscreteProcess
(muNucProcess);
73
/*
74
// Add standard EM Processes for Muon
75
G4ParticleDefinition* particle = G4MuonPlus::MuonPlus();
76
G4ProcessManager* pmanager = particle->GetProcessManager();
77
pmanager->AddProcess(new G4MuNuclearInteraction("muNucl"),-1,-1,4);
78
79
particle = G4MuonMinus::MuonMinus();
80
pmanager = particle->GetProcessManager();
81
82
pmanager->AddProcess(new G4MuNuclearInteraction("muNucl"),-1,-1,4);
83
*/
84
}
85
86
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
87
G4MuonPlus::MuonPlus
static G4MuonPlus * MuonPlus()
Definition:
G4MuonPlus.cc:99
MuNuclearBuilder::MuNuclearBuilder
MuNuclearBuilder(const G4String &name="muNucl")
Definition:
MuNuclearBuilder.cc:49
G4MuonVDNuclearModel.hh
G4ProcessManager::AddDiscreteProcess
G4int AddDiscreteProcess(G4VProcess *aProcess, G4int ord=ordDefault)
name
const XML_Char * name
Definition:
include/expat.h:151
G4ParticleDefinition::GetProcessManager
G4ProcessManager * GetProcessManager() const
MuNuclearBuilder.hh
Definition of the MuNuclearBuilder class.
MuNuclearBuilder::~MuNuclearBuilder
~MuNuclearBuilder()
Definition:
MuNuclearBuilder.cc:55
G4HadronicProcess::RegisterMe
void RegisterMe(G4HadronicInteraction *a)
Definition:
G4HadronicProcess.cc:142
G4MuonNuclearProcess.hh
G4ProcessManager.hh
G4ParticleDefinition.hh
MuNuclearBuilder::ConstructProcess
virtual void ConstructProcess()
Definition:
MuNuclearBuilder.cc:60
G4MuonMinus.hh
G4MuonMinus::MuonMinus
static G4MuonMinus * MuonMinus()
Definition:
G4MuonMinus.cc:100
G4ProcessManager
Definition:
G4ProcessManager.hh:106
G4MuonPlus.hh
G4MuonVDNuclearModel
Definition:
G4MuonVDNuclearModel.hh:54
G4VPhysicsConstructor
Definition:
G4VPhysicsConstructor.hh:121
G4String
Definition:
examples/extended/parallel/TopC/ParN02/AnnotatedFiles/G4String.hh:45
G4MuonNuclearProcess
Definition:
G4MuonNuclearProcess.hh:41
Generated on Wed Apr 30 2014 15:55:19 for Geant4.10 by
1.8.7