source: trunk/examples/extended/radioactivedecay/exrdm/src/exrdmPhysListParticles.cc@ 1036

Last change on this file since 1036 was 807, checked in by garnier, 17 years ago

update

File size: 3.7 KB
Line 
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
27//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
28
29#include "exrdmPhysListParticles.hh"
30
31// Bosons
32#include "G4ChargedGeantino.hh"
33#include "G4Geantino.hh"
34#include "G4Gamma.hh"
35#include "G4OpticalPhoton.hh"
36
37// leptons
38#include "G4MuonPlus.hh"
39#include "G4MuonMinus.hh"
40#include "G4NeutrinoMu.hh"
41#include "G4AntiNeutrinoMu.hh"
42
43#include "G4Electron.hh"
44#include "G4Positron.hh"
45#include "G4NeutrinoE.hh"
46#include "G4AntiNeutrinoE.hh"
47
48// Hadrons
49#include "G4MesonConstructor.hh"
50#include "G4BaryonConstructor.hh"
51#include "G4IonConstructor.hh"
52
53//ShortLived
54#include "G4ShortLivedConstructor.hh"
55
56//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
57
58exrdmPhysListParticles::exrdmPhysListParticles(const G4String& name)
59 : G4VPhysicsConstructor(name)
60{}
61
62//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
63
64exrdmPhysListParticles::~exrdmPhysListParticles()
65{}
66
67//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
68
69void exrdmPhysListParticles::ConstructParticle()
70{
71
72// pseudo-particles
73 G4Geantino::GeantinoDefinition();
74 G4ChargedGeantino::ChargedGeantinoDefinition();
75
76// gamma
77 G4Gamma::GammaDefinition();
78
79// optical photon
80 G4OpticalPhoton::OpticalPhotonDefinition();
81
82// leptons
83 G4Electron::ElectronDefinition();
84 G4Positron::PositronDefinition();
85 G4MuonPlus::MuonPlusDefinition();
86 G4MuonMinus::MuonMinusDefinition();
87
88 G4NeutrinoE::NeutrinoEDefinition();
89 G4AntiNeutrinoE::AntiNeutrinoEDefinition();
90 G4NeutrinoMu::NeutrinoMuDefinition();
91 G4AntiNeutrinoMu::AntiNeutrinoMuDefinition();
92
93// mesons
94 G4MesonConstructor mConstructor;
95 mConstructor.ConstructParticle();
96
97// barions
98 G4BaryonConstructor bConstructor;
99 bConstructor.ConstructParticle();
100
101// ions
102 G4IonConstructor iConstructor;
103 iConstructor.ConstructParticle();
104
105// Construct resonaces and quarks
106 G4ShortLivedConstructor pShortLivedConstructor;
107 pShortLivedConstructor.ConstructParticle();
108
109}
110
111//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
112
Note: See TracBrowser for help on using the repository browser.