source: trunk/source/physics_lists/lists/src/HadronPhysicsQGS_BIC.cc @ 1205

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

CVS update

File size: 4.4 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: HadronPhysicsQGS_BIC.cc,v 1.1 2007/11/13 10:23:24 gunter Exp $
27// GEANT4 tag $Name: geant4-09-03-cand-03 $
28//
29//---------------------------------------------------------------------------
30//
31// ClassName:   HadronPhysicsQGS_BIC
32//
33// Author: 2007 Gunter Folger
34//     created from HadronPhysicsQGSP_BIC  by H.P.Wellisch
35//
36// Modified:
37//
38//----------------------------------------------------------------------------
39//
40#include "HadronPhysicsQGS_BIC.hh"
41
42#include "globals.hh"
43#include "G4ios.hh"
44#include <iomanip>  
45#include "G4ParticleDefinition.hh"
46#include "G4ParticleTable.hh"
47
48#include "G4MesonConstructor.hh"
49#include "G4BaryonConstructor.hh"
50#include "G4ShortLivedConstructor.hh"
51
52HadronPhysicsQGS_BIC::HadronPhysicsQGS_BIC(const G4String& name, G4bool quasiElastic)
53                    :  G4VPhysicsConstructor(name) , QuasiElastic(quasiElastic)
54{}
55
56void HadronPhysicsQGS_BIC::CreateModels()
57{
58  theNeutrons=new G4NeutronBuilder;
59
60  theNeutrons->RegisterMe(theQGSBinaryNeutron=new G4QGSBinaryNeutronBuilder(QuasiElastic));
61  theNeutrons->RegisterMe(theLEPNeutron=new G4LEPNeutronBuilder);
62  theLEPNeutron->SetMinInelasticEnergy(9.5*GeV);
63  theLEPNeutron->SetMaxInelasticEnergy(25*GeV); 
64
65  theNeutrons->RegisterMe(theBinaryNeutron=new G4BinaryNeutronBuilder);
66  theBinaryNeutron->SetMaxEnergy(9.9*GeV);
67
68  thePro=new G4ProtonBuilder;
69  thePro->RegisterMe(theQGSBinaryPro=new G4QGSBinaryProtonBuilder(QuasiElastic));
70  thePro->RegisterMe(theLEPPro=new G4LEPProtonBuilder);
71  theLEPPro->SetMinEnergy(9.5*GeV);
72  theLEPPro->SetMaxEnergy(25*GeV);
73
74  thePro->RegisterMe(theBinaryPro=new G4BinaryProtonBuilder);
75  theBinaryPro->SetMaxEnergy(9.9*GeV);
76 
77  thePiK=new G4PiKBuilder;
78  thePiK->RegisterMe(theQGSBinaryPiK=new G4QGSBinaryPiKBuilder(QuasiElastic));
79  thePiK->RegisterMe(theBICPiK = new G4BinaryPiKBuilder);
80  thePiK->RegisterMe(theLEPPiK=new G4LEPPiKBuilder);
81  theLEPPiK->SetMinPionEnergy(1.2*GeV);
82  theLEPPiK->SetMaxEnergy(25*GeV);
83
84  theMiscLHEP=new G4MiscLHEPBuilder;
85}
86
87HadronPhysicsQGS_BIC::~HadronPhysicsQGS_BIC() 
88{
89   delete theMiscLHEP;
90   delete theQGSBinaryNeutron;
91   delete theLEPNeutron;
92   delete theBinaryNeutron;
93   delete theQGSBinaryPro;
94   delete theLEPPro;
95   delete thePro;
96   delete theBinaryPro;
97   delete theQGSBinaryPiK;
98   delete theBICPiK;
99   delete theLEPPiK;
100   delete thePiK;
101}
102
103void HadronPhysicsQGS_BIC::ConstructParticle()
104{
105  G4MesonConstructor pMesonConstructor;
106  pMesonConstructor.ConstructParticle();
107
108  G4BaryonConstructor pBaryonConstructor;
109  pBaryonConstructor.ConstructParticle();
110
111  G4ShortLivedConstructor pShortLivedConstructor;
112  pShortLivedConstructor.ConstructParticle(); 
113}
114
115#include "G4ProcessManager.hh"
116void HadronPhysicsQGS_BIC::ConstructProcess()
117{
118  CreateModels();
119  theNeutrons->Build();
120  thePro->Build();
121  thePiK->Build();
122  theMiscLHEP->Build();
123}
124
Note: See TracBrowser for help on using the repository browser.