source: trunk/source/physics_lists/lists/src/HadronPhysicsQGSP.cc@ 1274

Last change on this file since 1274 was 1228, checked in by garnier, 16 years ago

update geant4.9.3 tag

File size: 4.1 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: HadronPhysicsQGSP.cc,v 1.4 2007/11/13 10:16:11 gunter Exp $
28// GEANT4 tag $Name: geant4-09-03 $
29//
30//---------------------------------------------------------------------------
31//
32// ClassName: HadronPhysicsQGSP
33//
34// Author: 2002 J.P. Wellisch
35//
36// Modified:
37// 21.11.2005 G.Folger: migration to non static particles
38// 08.06.2006 V.Ivanchenko: remove stopping
39// 30.03.2007 G.Folger: Add code for quasielastic
40// 12.11.2007 G.Folger: Add code for projectileDiffraction for proton/neutron
41//
42
43#include "HadronPhysicsQGSP.hh"
44
45#include "globals.hh"
46#include "G4ios.hh"
47#include <iomanip>
48#include "G4ParticleDefinition.hh"
49#include "G4ParticleTable.hh"
50
51#include "G4MesonConstructor.hh"
52#include "G4BaryonConstructor.hh"
53#include "G4ShortLivedConstructor.hh"
54
55HadronPhysicsQGSP::HadronPhysicsQGSP(const G4String& name, G4bool quasiElastic)
56 : G4VPhysicsConstructor(name) , QuasiElastic(quasiElastic)
57{
58 ProjectileDiffraction=false;
59}
60
61void HadronPhysicsQGSP::CreateModels()
62{
63 theNeutrons=new G4NeutronBuilder;
64 theQGSPNeutron=new G4QGSPNeutronBuilder(QuasiElastic, ProjectileDiffraction);
65 theNeutrons->RegisterMe(theQGSPNeutron);
66 theNeutrons->RegisterMe(theLEPNeutron=new G4LEPNeutronBuilder);
67 theLEPNeutron->SetMaxInelasticEnergy(25*GeV);
68
69 thePro=new G4ProtonBuilder;
70 theQGSPPro=new G4QGSPProtonBuilder(QuasiElastic, ProjectileDiffraction);
71 thePro->RegisterMe(theQGSPPro);
72 thePro->RegisterMe(theLEPPro=new G4LEPProtonBuilder);
73 theLEPPro->SetMaxEnergy(25*GeV);
74
75 thePiK=new G4PiKBuilder;
76 theQGSPPiK=new G4QGSPPiKBuilder(QuasiElastic, false);
77 thePiK->RegisterMe(theQGSPPiK);
78 thePiK->RegisterMe(theLEPPiK=new G4LEPPiKBuilder);
79 theLEPPiK->SetMaxEnergy(25*GeV);
80
81 theMiscLHEP=new G4MiscLHEPBuilder;
82}
83
84HadronPhysicsQGSP::~HadronPhysicsQGSP()
85{
86 delete theMiscLHEP;
87 delete theQGSPNeutron;
88 delete theLEPNeutron;
89 delete theQGSPPro;
90 delete theLEPPro;
91 delete thePro;
92 delete theQGSPPiK;
93 delete theLEPPiK;
94 delete thePiK;
95}
96
97
98void HadronPhysicsQGSP::ConstructParticle()
99{
100 G4MesonConstructor pMesonConstructor;
101 pMesonConstructor.ConstructParticle();
102
103 G4BaryonConstructor pBaryonConstructor;
104 pBaryonConstructor.ConstructParticle();
105
106 G4ShortLivedConstructor pShortLivedConstructor;
107 pShortLivedConstructor.ConstructParticle();
108}
109
110#include "G4ProcessManager.hh"
111void HadronPhysicsQGSP::ConstructProcess()
112{
113 CreateModels();
114 theNeutrons->Build();
115 thePro->Build();
116 thePiK->Build();
117 theMiscLHEP->Build();
118}
119
Note: See TracBrowser for help on using the repository browser.