CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
HadronPhysicsQGSP_WP.cc
Go to the documentation of this file.
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 // GEANT4 tag $Name: V04-05-01 $
28 //
29 //---------------------------------------------------------------------------
30 //
31 // ClassName: HadronPhysicsQGSP_WP
32 //
33 // Author: 2002 J.P. Wellisch
34 //
35 // Modified:
36 // 21.11.2005 G.Folger: migration to non static particles
37 // 08.06.2006 V.Ivanchenko: remove stopping
38 // 30.03.2007 G.Folger: Add code for quasielastic
39 //
40 
45 
46 #include "globals.hh"
47 #include "G4ios.hh"
48 #include <iomanip>
49 #include "G4ParticleDefinition.hh"
50 #include "G4ParticleTable.hh"
51 
52 #include "G4MesonConstructor.hh"
53 #include "G4BaryonConstructor.hh"
54 #include "G4ShortLivedConstructor.hh"
55 #include "G4SystemOfUnits.hh"
56 
57 HadronPhysicsQGSP_WP::HadronPhysicsQGSP_WP(const G4String& name, G4bool quasiElastic)
58  : G4VPhysicsConstructor(name) , QuasiElastic(quasiElastic)
59 {}
60 
62 {
63  theNeutrons=new G4NeutronBuilder;
64  theQGSPNeutron=new G4QGSPNeutronBuilder(QuasiElastic);
65  theNeutrons->RegisterMe(theQGSPNeutron);
66  // theNeutrons->RegisterMe(theLEPNeutron=new G4LEPNeutronBuilder);
67  // theLEPNeutron->SetMaxInelasticEnergy(25*GeV);
68 
70  theQGSPPro=new G4QGSPProtonBuilder(QuasiElastic);
72  // thePro->RegisterMe(theLEPPro=new G4LEPProtonBuilder);
73  // theLEPPro->SetMaxEnergy(25*GeV);
74 
76  theQGSPPiK=new G4QGSPPiKBuilder(QuasiElastic);
78  // thePiK->RegisterMe(theLEPPiK=new G4LEPPiKBuilder);
79  // theLEPPiK->SetMaxEnergy(25*GeV);
80 
82 }
83 
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 
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"
112 {
113  CreateModels();
114  theNeutrons->Build();
115  thePro->Build();
116  thePiK->Build();
117  theMiscLHEP->Build();
118 }
119 
120 // Sept 2007 Modified for CMS GflashHadronWrapperProcess
G4QGSPProtonBuilder * theQGSPPro
G4PiKBuilder_WP * thePiK
HadronPhysicsQGSP_WP(const G4String &name="hadron", G4bool quasiElastic=true)
void RegisterMe(G4VPiKBuilder *aB)
G4QGSPNeutronBuilder * theQGSPNeutron
G4ProtonBuilder_WP * thePro
virtual void ConstructParticle()
G4MiscLHEPBuilder_WP * theMiscLHEP
G4NeutronBuilder * theNeutrons
void RegisterMe(G4VProtonBuilder *aB)
G4QGSPPiKBuilder * theQGSPPiK