1 |
cafagna |
1.1 |
#include "EMPhysics.hh" |
2 |
|
|
#include "globals.hh" |
3 |
|
|
#include "G4ios.hh" |
4 |
|
|
#include "G4ProcessManager.hh" |
5 |
|
|
#include "G4ParticleDefinition.hh" |
6 |
|
|
#include "G4ParticleTable.hh" |
7 |
|
|
#include "G4Gamma.hh" |
8 |
|
|
#include "G4Electron.hh" |
9 |
|
|
#include "G4Positron.hh" |
10 |
|
|
#include "G4NeutrinoE.hh" |
11 |
|
|
#include "G4AntiNeutrinoE.hh" |
12 |
|
|
|
13 |
|
|
|
14 |
|
|
EMPhysics:: |
15 |
|
|
EMPhysics(const G4String& name) : G4VPhysicsConstructor(name) {} |
16 |
|
|
|
17 |
|
|
EMPhysics:: |
18 |
|
|
~EMPhysics() {} |
19 |
|
|
|
20 |
|
|
void EMPhysics:: |
21 |
|
|
ConstructParticle() |
22 |
|
|
{ |
23 |
|
|
G4Gamma::GammaDefinition(); |
24 |
|
|
G4Electron::ElectronDefinition(); |
25 |
|
|
G4Positron::PositronDefinition(); |
26 |
|
|
G4NeutrinoE::NeutrinoEDefinition(); |
27 |
|
|
G4AntiNeutrinoE::AntiNeutrinoEDefinition(); |
28 |
|
|
} |
29 |
|
|
|
30 |
|
|
void EMPhysics:: |
31 |
|
|
ConstructProcess() |
32 |
|
|
{ |
33 |
|
|
theEMPhysics.Build(); |
34 |
|
|
theGNPhysics.Build(); |
35 |
|
|
} |
36 |
|
|
|
37 |
|
|
|