Geant4.10
 All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
examples/advanced/dnageometry/src/PhysicsList.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 // This example is provided by the Geant4-DNA collaboration
27 // Any report or published results obtained using the Geant4-DNA software
28 // and the DNA geometry given in the Geom_DNA example
29 // shall cite the following Geant4-DNA collaboration publications:
30 // [1] NIM B 298 (2013) 47-54
31 // [2] Med. Phys. 37 (2010) 4692-4708
32 // The Geant4-DNA web site is available at http://geant4-dna.org
33 //
34 #include "PhysicsList.hh"
35 #include "G4SystemOfUnits.hh"
36 #include "G4EmDNAPhysics.hh"
37 
38 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
39 
42 {
43  currentDefaultCut = 1.0*micrometer;
44  cutForGamma = currentDefaultCut;
45  cutForElectron = currentDefaultCut;
46  cutForPositron = currentDefaultCut;
47 
48  SetVerboseLevel(1);
49 
50  // EM physics
51  emPhysicsList = new G4EmDNAPhysics();
52 }
53 
54 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
55 
57 {
58 }
59 
60 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
61 
63 {
64  emPhysicsList->ConstructParticle();
65 }
66 
67 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
68 
70 {
71  // Transportation
72  //
74 
75  // Electromagnetic physics list
76  //
77  emPhysicsList->ConstructProcess();
78 }
79 
80 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
81 
82 #include "G4Gamma.hh"
83 #include "G4Electron.hh"
84 #include "G4Positron.hh"
85 
87 {
88  // fixe lower limit for cut
90 
91  // set cut values for gamma at first and for e- second and next for e+,
92  // because some processes for e+/e- need cut values for gamma
93  SetCutValue(cutForGamma, "gamma");
94  SetCutValue(cutForElectron, "e-");
95  SetCutValue(cutForPositron, "e+");
96 }
void SetCutValue(G4double aCut, const G4String &pname)
void SetEnergyRange(G4double lowedge, G4double highedge)
virtual void ConstructParticle()=0
void SetVerboseLevel(G4int value)
static G4ProductionCutsTable * GetProductionCutsTable()
virtual void ConstructProcess()=0
int micrometer
Definition: hepunit.py:34