CGEM BOSS 6.6.5.h
BESIII Offline Software System
Loading...
Searching...
No Matches
ExN04EMPhysics.hh
Go to the documentation of this file.
1//
2// ********************************************************************
3// * DISCLAIMER *
4// * *
5// * The following disclaimer summarizes all the specific disclaimers *
6// * of contributors to this software. The specific disclaimers,which *
7// * govern, are listed with their locations in: *
8// * http://cern.ch/geant4/license *
9// * *
10// * Neither the authors of this software system, nor their employing *
11// * institutes,nor the agencies providing financial support for this *
12// * work make any representation or warranty, express or implied, *
13// * regarding this software system or assume any liability for its *
14// * use. *
15// * *
16// * This code implementation is the intellectual property of the *
17// * GEANT4 collaboration. *
18// * By copying, distributing or modifying the Program (or any work *
19// * based on the Program) you indicate your acceptance of this *
20// * statement, and all its terms. *
21// ********************************************************************
22//
23//
24// $Id: ExN04EMPhysics.hh,v 1.1.1.1 2013/11/22 02:11:08 juxd Exp $
25// GEANT4 tag $Name: G4Svc-00-04-01 $
26//
27//
28// ------------------------------------------------------------
29// GEANT 4 class header file
30// Class Description:
31// This class is an derived class of G4VPhysicsConstructor
32//
33// -------------------------------------------
34// History
35// first version 12 Nov. 2000 by H.Kurashige
36// ------------------------------------------------------------
37#ifndef ExN04EMPhysics_h
38#define ExN04EMPhysics_h 1
39
40#include "globals.hh"
41#include "G4ios.hh"
42
43#include "G4VPhysicsConstructor.hh"
44
45#include "G4PhotoElectricEffect.hh"
46#include "G4ComptonScattering.hh"
47#include "G4GammaConversion.hh"
48#include "G4MultipleScattering.hh"
49#include "G4eIonisation.hh"
50#include "G4eBremsstrahlung.hh"
51#include "G4eplusAnnihilation.hh"
52
53class ExN04EMPhysics : public G4VPhysicsConstructor
54{
55 public:
56 ExN04EMPhysics(const G4String& name ="EM");
57 virtual ~ExN04EMPhysics();
58
59 public:
60 // This method will be invoked in the Construct() method.
61 // each particle type will be instantiated
62 virtual void ConstructParticle();
63
64 // This method will be invoked in the Construct() method.
65 // each physics process will be instantiated and
66 // registered to the process manager of each particle type
67 virtual void ConstructProcess();
68
69 protected:
70 // Gamma physics
71 G4PhotoElectricEffect thePhotoEffect;
72 G4ComptonScattering theComptonEffect;
73 G4GammaConversion thePairProduction;
74
75 // Electron physics
76 G4MultipleScattering theElectronMultipleScattering;
77 G4eIonisation theElectronIonisation;
78 G4eBremsstrahlung theElectronBremsStrahlung;
79
80 //Positron physics
81 G4MultipleScattering thePositronMultipleScattering;
82 G4eIonisation thePositronIonisation;
83 G4eBremsstrahlung thePositronBremsStrahlung;
84 G4eplusAnnihilation theAnnihilation;
85};
86
87
88#endif
89
90
91
92
93
G4MultipleScattering thePositronMultipleScattering
G4eIonisation theElectronIonisation
G4ComptonScattering theComptonEffect
G4eBremsstrahlung theElectronBremsStrahlung
ExN04EMPhysics(const G4String &name="EM")
virtual ~ExN04EMPhysics()
G4MultipleScattering theElectronMultipleScattering
virtual void ConstructProcess()
G4PhotoElectricEffect thePhotoEffect
G4eplusAnnihilation theAnnihilation
virtual void ConstructParticle()
G4GammaConversion thePairProduction
G4eIonisation thePositronIonisation
G4eBremsstrahlung thePositronBremsStrahlung