source: trunk/source/physics_lists/lists/src/HadronPhysicsQGSC_EFLOW.cc @ 1273

Last change on this file since 1273 was 1228, checked in by garnier, 14 years ago

update geant4.9.3 tag

File size: 4.0 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// $Id: HadronPhysicsQGSC_EFLOW.cc,v 1.2 2007/04/26 14:47:11 gunter Exp $
27// GEANT4 tag $Name: geant4-09-03 $
28//
29//---------------------------------------------------------------------------
30//
31// ClassName:   HadronPhysicsQGSC_EFLOW
32//
33// Author: 2006 Gunter Folger
34//
35// Created from HadronPhysicsQGSC
36// Modified:
37// 25.04.2007 G.Folger: Add code for quasielastic
38//
39//----------------------------------------------------------------------------
40//
41#include "HadronPhysicsQGSC_EFLOW.hh"
42
43#include "globals.hh"
44#include "G4ios.hh"
45#include <iomanip>  
46#include "G4ParticleDefinition.hh"
47#include "G4ParticleTable.hh"
48
49#include "G4MesonConstructor.hh"
50#include "G4BaryonConstructor.hh"
51#include "G4ShortLivedConstructor.hh"
52
53HadronPhysicsQGSC_EFLOW::HadronPhysicsQGSC_EFLOW(const G4String& name, G4bool quasiElastic)
54                    :  G4VPhysicsConstructor(name)  , QuasiElastic(quasiElastic)
55{}
56
57void HadronPhysicsQGSC_EFLOW::CreateModels()
58{
59  theNeutrons=new G4NeutronBuilder;
60  theNeutrons->RegisterMe(theQGSCEflowNeutron=new G4QGSCEflowNeutronBuilder(QuasiElastic));
61  theNeutrons->RegisterMe(theLEPNeutron=new G4LEPNeutronBuilder);
62  theLEPNeutron->SetMaxInelasticEnergy(25*GeV);
63
64  thePro=new G4ProtonBuilder;
65  thePro->RegisterMe(theQGSCEflowPro=new G4QGSCEflowProtonBuilder(QuasiElastic));
66  thePro->RegisterMe(theLEPPro=new G4LEPProtonBuilder);
67  theLEPPro->SetMaxEnergy(25*GeV);
68
69  thePiK=new G4PiKBuilder;
70  thePiK->RegisterMe(theQGSCEflowPiK=new G4QGSCEflowPiKBuilder(QuasiElastic));
71  thePiK->RegisterMe(theLEPPiK=new G4LEPPiKBuilder);
72  theLEPPiK->SetMaxEnergy(25*GeV);
73 
74  theMiscLHEP=new G4MiscLHEPBuilder;
75}
76
77HadronPhysicsQGSC_EFLOW::~HadronPhysicsQGSC_EFLOW() 
78{
79   delete theMiscLHEP;
80   delete theQGSCEflowNeutron;
81   delete theLEPNeutron;
82   delete theNeutrons;
83   delete theQGSCEflowPro;
84   delete theLEPPro;
85   delete thePro;
86   delete theQGSCEflowPiK;
87   delete theLEPPiK;
88   delete thePiK;
89}
90
91void HadronPhysicsQGSC_EFLOW::ConstructParticle()
92{
93  G4MesonConstructor pMesonConstructor;
94  pMesonConstructor.ConstructParticle();
95
96  G4BaryonConstructor pBaryonConstructor;
97  pBaryonConstructor.ConstructParticle();
98
99  G4ShortLivedConstructor pShortLivedConstructor;
100  pShortLivedConstructor.ConstructParticle(); 
101}
102
103#include "G4ProcessManager.hh"
104void HadronPhysicsQGSC_EFLOW::ConstructProcess()
105{
106  CreateModels();
107  theNeutrons->Build();
108  thePro->Build();
109  thePiK->Build();
110  theMiscLHEP->Build();
111}
112
Note: See TracBrowser for help on using the repository browser.