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_WP Class Reference

#include <HadronPhysicsQGSPCMS_FTFP_BERT_WP.h>

Inheritance diagram for HadronPhysicsQGSPCMS_FTFP_BERT_WP:

Public Member Functions

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

Private Member Functions

void CreateModels ()
 

Private Attributes

G4bool ProjectileDiffraction
 
G4bool QuasiElastic
 
G4BertiniNeutronBuilder * theBertiniNeutron
 
G4BertiniPiKBuilder * theBertiniPiK
 
G4BertiniProtonBuilder * theBertiniPro
 
CMSFTFPNeutronBuilder * theFTFPNeutron
 
CMSFTFPPiKBuilder * theFTFPPiK
 
CMSFTFPProtonBuilder * theFTFPPro
 
G4MiscLHEPBuilder_WPtheMiscLHEP
 
G4NeutronBuilder * theNeutrons
 
G4PiKBuilder_WPthePiK
 
G4ProtonBuilder_WPthePro
 
G4QGSPNeutronBuilder * theQGSPNeutron
 
G4QGSPPiKBuilder * theQGSPPiK
 
G4QGSPProtonBuilder * theQGSPPro
 

Detailed Description

Definition at line 30 of file HadronPhysicsQGSPCMS_FTFP_BERT_WP.h.

Constructor & Destructor Documentation

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

Definition at line 85 of file HadronPhysicsQGSPCMS_FTFP_BERT_WP.cc.

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

86 {
87  delete theMiscLHEP;
88  delete theQGSPNeutron;
89  delete theFTFPNeutron;
90  delete theBertiniNeutron;
91  delete theQGSPPro;
92  delete theFTFPPro;
93  delete thePro;
94  delete theBertiniPro;
95  delete theQGSPPiK;
96  delete theFTFPPiK;
97  delete theBertiniPiK;
98  delete thePiK;
99 }

Member Function Documentation

void HadronPhysicsQGSPCMS_FTFP_BERT_WP::ConstructParticle ( )
virtual

Definition at line 101 of file HadronPhysicsQGSPCMS_FTFP_BERT_WP.cc.

102 {
103  G4MesonConstructor pMesonConstructor;
104  pMesonConstructor.ConstructParticle();
105 
106  G4BaryonConstructor pBaryonConstructor;
107  pBaryonConstructor.ConstructParticle();
108 
109  G4ShortLivedConstructor pShortLivedConstructor;
110  pShortLivedConstructor.ConstructParticle();
111 }
void HadronPhysicsQGSPCMS_FTFP_BERT_WP::ConstructProcess ( )
virtual
void HadronPhysicsQGSPCMS_FTFP_BERT_WP::CreateModels ( )
private

Definition at line 24 of file HadronPhysicsQGSPCMS_FTFP_BERT_WP.cc.

References GeV, QuasiElastic, G4ProtonBuilder_WP::RegisterMe(), G4PiKBuilder_WP::RegisterMe(), theBertiniNeutron, theBertiniPiK, theBertiniPro, theFTFPNeutron, theFTFPPiK, theFTFPPro, theMiscLHEP, theNeutrons, thePiK, thePro, theQGSPNeutron, theQGSPPiK, and theQGSPPro.

Referenced by ConstructProcess().

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

Member Data Documentation

G4bool HadronPhysicsQGSPCMS_FTFP_BERT_WP::ProjectileDiffraction
private
G4bool HadronPhysicsQGSPCMS_FTFP_BERT_WP::QuasiElastic
private

Definition at line 63 of file HadronPhysicsQGSPCMS_FTFP_BERT_WP.h.

Referenced by CreateModels(), and SetQuasiElastic().

G4BertiniNeutronBuilder* HadronPhysicsQGSPCMS_FTFP_BERT_WP::theBertiniNeutron
private
G4BertiniPiKBuilder* HadronPhysicsQGSPCMS_FTFP_BERT_WP::theBertiniPiK
private
G4BertiniProtonBuilder* HadronPhysicsQGSPCMS_FTFP_BERT_WP::theBertiniPro
private
CMSFTFPNeutronBuilder* HadronPhysicsQGSPCMS_FTFP_BERT_WP::theFTFPNeutron
private
CMSFTFPPiKBuilder* HadronPhysicsQGSPCMS_FTFP_BERT_WP::theFTFPPiK
private
CMSFTFPProtonBuilder* HadronPhysicsQGSPCMS_FTFP_BERT_WP::theFTFPPro
private
G4MiscLHEPBuilder_WP* HadronPhysicsQGSPCMS_FTFP_BERT_WP::theMiscLHEP
private
G4NeutronBuilder* HadronPhysicsQGSPCMS_FTFP_BERT_WP::theNeutrons
private

Definition at line 45 of file HadronPhysicsQGSPCMS_FTFP_BERT_WP.h.

Referenced by ConstructProcess(), and CreateModels().

G4PiKBuilder_WP* HadronPhysicsQGSPCMS_FTFP_BERT_WP::thePiK
private
G4ProtonBuilder_WP* HadronPhysicsQGSPCMS_FTFP_BERT_WP::thePro
private
G4QGSPNeutronBuilder* HadronPhysicsQGSPCMS_FTFP_BERT_WP::theQGSPNeutron
private
G4QGSPPiKBuilder* HadronPhysicsQGSPCMS_FTFP_BERT_WP::theQGSPPiK
private
G4QGSPProtonBuilder* HadronPhysicsQGSPCMS_FTFP_BERT_WP::theQGSPPro
private