source: trunk/source/particles/hadrons/barions/src/G4BaryonConstructor.cc @ 1202

Last change on this file since 1202 was 1196, checked in by garnier, 15 years ago

update CVS release candidate geant4.9.3.01

File size: 4.6 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// $Id: G4BaryonConstructor.cc,v 1.4 2006/06/29 19:16:56 gunter Exp $
28// GEANT4 tag $Name: geant4-09-03-cand-01 $
29//
30//
31// --------------------------------------------------------------
32//      GEANT 4 class implementation file
33//
34
35#include "G4BaryonConstructor.hh"
36
37#include "G4ParticleDefinition.hh"
38#include "G4ParticleTable.hh"
39// Baryons
40#include "G4Proton.hh"
41#include "G4AntiProton.hh"
42#include "G4Neutron.hh"
43#include "G4AntiNeutron.hh"
44
45#include "G4Lambda.hh"
46#include "G4SigmaPlus.hh"
47#include "G4SigmaZero.hh"
48#include "G4SigmaMinus.hh"
49#include "G4XiMinus.hh"
50#include "G4XiZero.hh"
51#include "G4OmegaMinus.hh"
52
53#include "G4AntiLambda.hh"
54#include "G4AntiSigmaPlus.hh"
55#include "G4AntiSigmaZero.hh"
56#include "G4AntiSigmaMinus.hh"
57#include "G4AntiXiMinus.hh"
58#include "G4AntiXiZero.hh"
59#include "G4AntiOmegaMinus.hh"
60
61#include "G4LambdacPlus.hh"
62#include "G4SigmacPlusPlus.hh"
63#include "G4SigmacPlus.hh"
64#include "G4SigmacZero.hh"
65#include "G4XicPlus.hh"
66#include "G4XicZero.hh"
67#include "G4OmegacZero.hh"
68
69#include "G4AntiLambdacPlus.hh"
70#include "G4AntiSigmacPlusPlus.hh"
71#include "G4AntiSigmacPlus.hh"
72#include "G4AntiSigmacZero.hh"
73#include "G4AntiXicPlus.hh"
74#include "G4AntiXicZero.hh"
75#include "G4AntiOmegacZero.hh"
76
77G4BaryonConstructor::G4BaryonConstructor()
78{
79}
80
81G4BaryonConstructor::~G4BaryonConstructor()
82{
83}
84
85
86void G4BaryonConstructor::ConstructParticle()
87{
88  ConstructNucleons();
89  ConstructStrangeBaryons();
90  ConstructCharmBaryons();
91  ConstructBottomBaryons();
92}
93
94void G4BaryonConstructor::ConstructNucleons()
95{
96  G4Proton::ProtonDefinition();
97  G4AntiProton::AntiProtonDefinition();
98  G4Neutron::NeutronDefinition();
99  G4AntiNeutron::AntiNeutronDefinition();
100}
101void G4BaryonConstructor::ConstructStrangeBaryons()
102{
103  G4Lambda::LambdaDefinition();
104  G4AntiLambda::AntiLambdaDefinition();
105  G4SigmaZero::SigmaZeroDefinition();
106  G4AntiSigmaZero::AntiSigmaZeroDefinition();
107  G4SigmaPlus::SigmaPlusDefinition();
108  G4AntiSigmaPlus::AntiSigmaPlusDefinition();
109  G4SigmaMinus::SigmaMinusDefinition();
110  G4AntiSigmaMinus::AntiSigmaMinusDefinition();
111  G4XiZero::XiZeroDefinition();
112  G4AntiXiZero::AntiXiZeroDefinition();
113  G4XiMinus::XiMinusDefinition();
114  G4AntiXiMinus::AntiXiMinusDefinition();
115  G4OmegaMinus::OmegaMinusDefinition();
116  G4AntiOmegaMinus::AntiOmegaMinusDefinition();
117}
118void G4BaryonConstructor::ConstructCharmBaryons()
119{
120  G4LambdacPlus::LambdacPlusDefinition();
121  G4SigmacPlusPlus::SigmacPlusPlusDefinition();
122  G4SigmacPlus::SigmacPlusDefinition();
123  G4SigmacZero::SigmacZeroDefinition();
124  G4XicPlus::XicPlusDefinition();
125  G4XicZero::XicZeroDefinition();
126  G4OmegacZero::OmegacZeroDefinition();
127  G4AntiLambdacPlus::AntiLambdacPlusDefinition();
128  G4AntiSigmacPlusPlus::AntiSigmacPlusPlusDefinition();
129  G4AntiSigmacPlus::AntiSigmacPlusDefinition();
130  G4AntiSigmacZero::AntiSigmacZeroDefinition();
131  G4AntiXicPlus::AntiXicPlusDefinition();
132  G4AntiXicZero::AntiXicZeroDefinition();
133  G4AntiOmegacZero::AntiOmegacZeroDefinition();
134}
135
136void G4BaryonConstructor::ConstructBottomBaryons()
137{
138}
Note: See TracBrowser for help on using the repository browser.