CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
List of all members | Public Member Functions | Private Member Functions | Private Attributes
HadronPhysicsQGSPCMS_FTFP_BERT Class Reference

#include <HadronPhysicsQGSPCMS_FTFP_BERT.h>

Inheritance diagram for HadronPhysicsQGSPCMS_FTFP_BERT:

Public Member Functions

virtual void ConstructParticle ()
 
virtual void ConstructProcess ()
 
 HadronPhysicsQGSPCMS_FTFP_BERT (const G4String &name="hadron", G4bool quasiElastic=true)
 
void SetProjectileDiffraction (G4bool value)
 
void SetQuasiElastic (G4bool value)
 
virtual ~HadronPhysicsQGSPCMS_FTFP_BERT ()
 

Private Member Functions

void CreateModels ()
 

Private Attributes

G4bool ProjectileDiffraction
 
G4bool QuasiElastic
 
G4BertiniNeutronBuilder * theBertiniNeutron
 
G4BertiniPiKBuilder * theBertiniPiK
 
G4BertiniProtonBuilder * theBertiniPro
 
CMSFTFPNeutronBuilder * theFTFPNeutron
 
CMSFTFPPiKBuilder * theFTFPPiK
 
CMSFTFPProtonBuilder * theFTFPPro
 
G4LEPNeutronBuilder * theLEPNeutron
 
G4MiscLHEPBuilder * theMiscLHEP
 
G4NeutronBuilder * theNeutrons
 
G4PiKBuilder * thePiK
 
G4ProtonBuilder * thePro
 
G4QGSPNeutronBuilder * theQGSPNeutron
 
G4QGSPPiKBuilder * theQGSPPiK
 
G4QGSPProtonBuilder * theQGSPPro
 

Detailed Description

Definition at line 26 of file HadronPhysicsQGSPCMS_FTFP_BERT.h.

Constructor & Destructor Documentation

HadronPhysicsQGSPCMS_FTFP_BERT::HadronPhysicsQGSPCMS_FTFP_BERT ( const G4String &  name = "hadron",
G4bool  quasiElastic = true 
)
HadronPhysicsQGSPCMS_FTFP_BERT::~HadronPhysicsQGSPCMS_FTFP_BERT ( )
virtual

Definition at line 80 of file HadronPhysicsQGSPCMS_FTFP_BERT.cc.

References theBertiniNeutron, theBertiniPiK, theBertiniPro, theFTFPNeutron, theFTFPPiK, theFTFPPro, theMiscLHEP, thePiK, thePro, theQGSPNeutron, theQGSPPiK, and theQGSPPro.

81 {
82  delete theMiscLHEP;
83  delete theQGSPNeutron;
84  delete theFTFPNeutron;
85  delete theBertiniNeutron;
86  delete theQGSPPro;
87  delete theFTFPPro;
88  delete thePro;
89  delete theBertiniPro;
90  delete theQGSPPiK;
91  delete theFTFPPiK;
92  delete theBertiniPiK;
93  delete thePiK;
94 }

Member Function Documentation

void HadronPhysicsQGSPCMS_FTFP_BERT::ConstructParticle ( )
virtual

Definition at line 96 of file HadronPhysicsQGSPCMS_FTFP_BERT.cc.

97 {
98  G4MesonConstructor pMesonConstructor;
99  pMesonConstructor.ConstructParticle();
100 
101  G4BaryonConstructor pBaryonConstructor;
102  pBaryonConstructor.ConstructParticle();
103 
104  G4ShortLivedConstructor pShortLivedConstructor;
105  pShortLivedConstructor.ConstructParticle();
106 }
void HadronPhysicsQGSPCMS_FTFP_BERT::ConstructProcess ( )
virtual
void HadronPhysicsQGSPCMS_FTFP_BERT::CreateModels ( )
private

Definition at line 19 of file HadronPhysicsQGSPCMS_FTFP_BERT.cc.

References ProjectileDiffraction, QuasiElastic, theBertiniNeutron, theBertiniPiK, theBertiniPro, theFTFPNeutron, theFTFPPiK, theFTFPPro, theLEPNeutron, theMiscLHEP, theNeutrons, thePiK, thePro, theQGSPNeutron, theQGSPPiK, and theQGSPPro.

Referenced by ConstructProcess().

20 {
21  // First transition, between BERT and FTF/P
22  G4double minFTFP= 6.0 * GeV; // Was 9.5 for LEP (in FTFP_BERT 6.0 * GeV);
23  G4double maxBERT= 8.0 * GeV; // Was 9.9 for LEP (in FTFP_BERT 8.0 * GeV);
24  // Second transition, between FTF/P and QGS/P
25  G4double minQGSP= 12.0 * GeV;
26  G4double maxFTFP= 25.0 * GeV;
27 
28  G4bool quasiElasFTF= false; // Use built-in quasi-elastic (not add-on)
29  G4bool quasiElasQGS= true; // For QGS, it must use it.
30 
31  G4cout << " New QGSPCMS_FTFP_BERT physics list, replaces LEP with FTF/P for p/n/pi (/K?)";
32  G4cout << " Thresholds: " << G4endl;
33  G4cout << " 1) between BERT and FTF/P over the interval "
34  << minFTFP/GeV << " to " << maxBERT/GeV << " GeV. " << G4endl;
35  G4cout << " 2) between FTF/P and QGS/P over the interval "
36  << minQGSP/GeV << " to " << maxFTFP/GeV << " GeV. " << G4endl;
37  G4cout << " -- quasiElastic was asked to be " << QuasiElastic << G4endl
38  << " Changed to " << quasiElasQGS << " for QGS "
39  << " and to " << quasiElasFTF << " (must be false) for FTF" << G4endl;
40 
41  theNeutrons=new G4NeutronBuilder;
42  theNeutrons->RegisterMe(theQGSPNeutron=new G4QGSPNeutronBuilder(quasiElasQGS, ProjectileDiffraction));
43  theQGSPNeutron->SetMinEnergy(minQGSP);
44  theNeutrons->RegisterMe(theFTFPNeutron=new CMSFTFPNeutronBuilder(quasiElasFTF));
45  theFTFPNeutron->SetMinEnergy(minFTFP); // was (9.5*GeV);
46  theFTFPNeutron->SetMaxEnergy(maxFTFP); // was (25*GeV);
47  // Exclude LEP only from Inelastic
48  // -- Register it for other processes: Capture, Elastic
49  theNeutrons->RegisterMe(theLEPNeutron=new G4LEPNeutronBuilder);
50  theLEPNeutron->SetMinInelasticEnergy(0.0*GeV);
51  theLEPNeutron->SetMaxInelasticEnergy(0.0*GeV);
52 
53  theNeutrons->RegisterMe(theBertiniNeutron=new G4BertiniNeutronBuilder);
54  theBertiniNeutron->SetMinEnergy(0.0*GeV);
55  theBertiniNeutron->SetMaxEnergy(maxBERT); // was (9.9*GeV);
56 
57  thePro=new G4ProtonBuilder;
58  thePro->RegisterMe(theQGSPPro=new G4QGSPProtonBuilder(quasiElasQGS, ProjectileDiffraction));
59  theQGSPPro->SetMinEnergy(minQGSP);
60  thePro->RegisterMe(theFTFPPro=new CMSFTFPProtonBuilder(quasiElasFTF));
61  theFTFPPro->SetMinEnergy(minFTFP); // was (9.5*GeV);
62  theFTFPPro->SetMaxEnergy(maxFTFP); // was (25*GeV);
63 
64  thePro->RegisterMe(theBertiniPro=new G4BertiniProtonBuilder);
65  theBertiniPro->SetMaxEnergy(maxBERT); // was (9.9*GeV);
66 
67  thePiK=new G4PiKBuilder;
68  thePiK->RegisterMe(theQGSPPiK=new G4QGSPPiKBuilder(quasiElasQGS));
69  theQGSPPiK->SetMinEnergy(minQGSP);
70  thePiK->RegisterMe(theFTFPPiK=new CMSFTFPPiKBuilder(quasiElasFTF));
71  theFTFPPiK->SetMaxEnergy(maxFTFP); // was (25*GeV);
72  theFTFPPiK->SetMinEnergy(minFTFP); // was (9.5*GeV);
73 
74  thePiK->RegisterMe(theBertiniPiK=new G4BertiniPiKBuilder);
75  theBertiniPiK->SetMaxEnergy(maxBERT); // was (9.9*GeV);
76 
77  theMiscLHEP=new G4MiscLHEPBuilder;
78 }
void HadronPhysicsQGSPCMS_FTFP_BERT::SetProjectileDiffraction ( G4bool  value)
inline
void HadronPhysicsQGSPCMS_FTFP_BERT::SetQuasiElastic ( G4bool  value)
inline

Member Data Documentation

G4bool HadronPhysicsQGSPCMS_FTFP_BERT::ProjectileDiffraction
private
G4bool HadronPhysicsQGSPCMS_FTFP_BERT::QuasiElastic
private

Definition at line 59 of file HadronPhysicsQGSPCMS_FTFP_BERT.h.

Referenced by CreateModels(), and SetQuasiElastic().

G4BertiniNeutronBuilder* HadronPhysicsQGSPCMS_FTFP_BERT::theBertiniNeutron
private
G4BertiniPiKBuilder* HadronPhysicsQGSPCMS_FTFP_BERT::theBertiniPiK
private
G4BertiniProtonBuilder* HadronPhysicsQGSPCMS_FTFP_BERT::theBertiniPro
private
CMSFTFPNeutronBuilder* HadronPhysicsQGSPCMS_FTFP_BERT::theFTFPNeutron
private
CMSFTFPPiKBuilder* HadronPhysicsQGSPCMS_FTFP_BERT::theFTFPPiK
private
CMSFTFPProtonBuilder* HadronPhysicsQGSPCMS_FTFP_BERT::theFTFPPro
private
G4LEPNeutronBuilder* HadronPhysicsQGSPCMS_FTFP_BERT::theLEPNeutron
private

Definition at line 45 of file HadronPhysicsQGSPCMS_FTFP_BERT.h.

Referenced by CreateModels().

G4MiscLHEPBuilder* HadronPhysicsQGSPCMS_FTFP_BERT::theMiscLHEP
private
G4NeutronBuilder* HadronPhysicsQGSPCMS_FTFP_BERT::theNeutrons
private

Definition at line 41 of file HadronPhysicsQGSPCMS_FTFP_BERT.h.

Referenced by ConstructProcess(), and CreateModels().

G4PiKBuilder* HadronPhysicsQGSPCMS_FTFP_BERT::thePiK
private
G4ProtonBuilder* HadronPhysicsQGSPCMS_FTFP_BERT::thePro
private
G4QGSPNeutronBuilder* HadronPhysicsQGSPCMS_FTFP_BERT::theQGSPNeutron
private
G4QGSPPiKBuilder* HadronPhysicsQGSPCMS_FTFP_BERT::theQGSPPiK
private
G4QGSPProtonBuilder* HadronPhysicsQGSPCMS_FTFP_BERT::theQGSPPro
private