Geant4.10
 All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
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 
50  : G4VPhysicsConstructor(name)
51 {}
52 
53 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
54 
56 {}
57 
58 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
59 
61 {
62  G4ProcessManager * pManager = 0;
63 
64  G4MuonNuclearProcess* muNucProcess = new G4MuonNuclearProcess();
65  G4MuonVDNuclearModel* muNucModel = new G4MuonVDNuclearModel();
66  muNucProcess->RegisterMe(muNucModel);
67 
69  pManager->AddDiscreteProcess(muNucProcess);
70 
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 
static G4MuonPlus * MuonPlus()
Definition: G4MuonPlus.cc:99
MuNuclearBuilder(const G4String &name="muNucl")
G4int AddDiscreteProcess(G4VProcess *aProcess, G4int ord=ordDefault)
const XML_Char * name
G4ProcessManager * GetProcessManager() const
Definition of the MuNuclearBuilder class.
void RegisterMe(G4HadronicInteraction *a)
virtual void ConstructProcess()
static G4MuonMinus * MuonMinus()
Definition: G4MuonMinus.cc:100