Geant4  10.03.p01
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
G4FTFPAntiBarionBuilder Class Reference

#include <G4FTFPAntiBarionBuilder.hh>

Inheritance diagram for G4FTFPAntiBarionBuilder:
Collaboration diagram for G4FTFPAntiBarionBuilder:

Public Member Functions

 G4FTFPAntiBarionBuilder (G4bool quasiElastic=false)
 
virtual ~G4FTFPAntiBarionBuilder ()
 
virtual void Build (G4HadronElasticProcess *aP)
 
virtual void Build (G4AntiProtonInelasticProcess *aP)
 
virtual void Build (G4AntiNeutronInelasticProcess *aP)
 
virtual void Build (G4AntiDeuteronInelasticProcess *aP)
 
virtual void Build (G4AntiTritonInelasticProcess *aP)
 
virtual void Build (G4AntiHe3InelasticProcess *aP)
 
virtual void Build (G4AntiAlphaInelasticProcess *aP)
 
void SetMinEnergy (G4double val)
 
void SetMaxEnergy (G4double val)
 
- Public Member Functions inherited from G4VAntiBarionBuilder
 G4VAntiBarionBuilder ()
 
virtual ~G4VAntiBarionBuilder ()
 

Detailed Description

Definition at line 59 of file G4FTFPAntiBarionBuilder.hh.

Constructor & Destructor Documentation

G4FTFPAntiBarionBuilder::G4FTFPAntiBarionBuilder ( G4bool  quasiElastic = false)

Definition at line 50 of file G4FTFPAntiBarionBuilder.cc.

51 {
52  theAntiNucleonData =
53  new G4CrossSectionInelastic(theAntiNucleonXS=new G4ComponentAntiNuclNuclearXS());
54 
55  theMin = 0.0*GeV;
56  theMax = 100.0*TeV;
57  theModel = new G4TheoFSGenerator("FTFP");
58 
59  theStringModel = new G4FTFModel;
60  theStringDecay = new G4ExcitedStringDecay(theLund = new G4LundStringFragmentation);
61  theStringModel->SetFragmentationModel(theStringDecay);
62 
63  theCascade = new G4GeneratorPrecompoundInterface();
64 
65  theModel->SetHighEnergyGenerator(theStringModel);
66  if (quasiElastic)
67  {
68  theQuasiElastic=new G4QuasiElasticChannel;
69  theModel->SetQuasiElasticChannel(theQuasiElastic);
70  } else
71  { theQuasiElastic=0;}
72 
73  theModel->SetTransport(theCascade);
74  theModel->SetMinEnergy(theMin);
75  theModel->SetMaxEnergy(100*TeV);
76 }
void SetQuasiElasticChannel(G4QuasiElasticChannel *const value)
void SetFragmentationModel(G4VStringFragmentation *aModel)
void SetHighEnergyGenerator(G4VHighEnergyGenerator *const value)
static constexpr double TeV
Definition: G4SIunits.hh:218
void SetMinEnergy(G4double anEnergy)
static constexpr double GeV
Definition: G4SIunits.hh:217
void SetMaxEnergy(const G4double anEnergy)
void SetTransport(G4VIntraNuclearTransportModel *const value)

Here is the call graph for this function:

G4FTFPAntiBarionBuilder::~G4FTFPAntiBarionBuilder ( )
virtual

Definition at line 78 of file G4FTFPAntiBarionBuilder.cc.

79 {
80  delete theStringDecay;
81  delete theStringModel;
82  //delete theModel;
83  if ( theQuasiElastic ) delete theQuasiElastic;
84  delete theLund;
85  delete theAntiNucleonXS;
86  //delete theAntiNucleonData;
87 }

Member Function Documentation

void G4FTFPAntiBarionBuilder::Build ( G4HadronElasticProcess aP)
virtual

Implements G4VAntiBarionBuilder.

Definition at line 90 of file G4FTFPAntiBarionBuilder.cc.

90 {}
void G4FTFPAntiBarionBuilder::Build ( G4AntiProtonInelasticProcess aP)
virtual

Implements G4VAntiBarionBuilder.

Definition at line 93 of file G4FTFPAntiBarionBuilder.cc.

94 {
95  theModel->SetMinEnergy(theMin);
96  theModel->SetMaxEnergy(theMax);
97  aP->AddDataSet(theAntiNucleonData);
98  aP->RegisterMe(theModel);
99 }
void RegisterMe(G4HadronicInteraction *a)
void SetMinEnergy(G4double anEnergy)
void AddDataSet(G4VCrossSectionDataSet *aDataSet)
void SetMaxEnergy(const G4double anEnergy)

Here is the call graph for this function:

void G4FTFPAntiBarionBuilder::Build ( G4AntiNeutronInelasticProcess aP)
virtual

Implements G4VAntiBarionBuilder.

Definition at line 102 of file G4FTFPAntiBarionBuilder.cc.

103 {
104  theModel->SetMinEnergy(theMin);
105  theModel->SetMaxEnergy(theMax);
106  aP->AddDataSet(theAntiNucleonData);
107  aP->RegisterMe(theModel);
108 }
void RegisterMe(G4HadronicInteraction *a)
void SetMinEnergy(G4double anEnergy)
void AddDataSet(G4VCrossSectionDataSet *aDataSet)
void SetMaxEnergy(const G4double anEnergy)

Here is the call graph for this function:

void G4FTFPAntiBarionBuilder::Build ( G4AntiDeuteronInelasticProcess aP)
virtual

Implements G4VAntiBarionBuilder.

Definition at line 111 of file G4FTFPAntiBarionBuilder.cc.

112 {
113  theModel->SetMinEnergy(theMin);
114  theModel->SetMaxEnergy(theMax);
115  aP->AddDataSet(theAntiNucleonData);
116  aP->RegisterMe(theModel);
117 }
void RegisterMe(G4HadronicInteraction *a)
void SetMinEnergy(G4double anEnergy)
void AddDataSet(G4VCrossSectionDataSet *aDataSet)
void SetMaxEnergy(const G4double anEnergy)

Here is the call graph for this function:

void G4FTFPAntiBarionBuilder::Build ( G4AntiTritonInelasticProcess aP)
virtual

Implements G4VAntiBarionBuilder.

Definition at line 120 of file G4FTFPAntiBarionBuilder.cc.

121 {
122  theModel->SetMinEnergy(theMin);
123  theModel->SetMaxEnergy(theMax);
124  aP->AddDataSet(theAntiNucleonData);
125  aP->RegisterMe(theModel);
126 }
void RegisterMe(G4HadronicInteraction *a)
void SetMinEnergy(G4double anEnergy)
void AddDataSet(G4VCrossSectionDataSet *aDataSet)
void SetMaxEnergy(const G4double anEnergy)

Here is the call graph for this function:

void G4FTFPAntiBarionBuilder::Build ( G4AntiHe3InelasticProcess aP)
virtual

Implements G4VAntiBarionBuilder.

Definition at line 129 of file G4FTFPAntiBarionBuilder.cc.

130 {
131  theModel->SetMinEnergy(theMin);
132  theModel->SetMaxEnergy(theMax);
133  aP->AddDataSet(theAntiNucleonData);
134  aP->RegisterMe(theModel);
135 }
void RegisterMe(G4HadronicInteraction *a)
void SetMinEnergy(G4double anEnergy)
void AddDataSet(G4VCrossSectionDataSet *aDataSet)
void SetMaxEnergy(const G4double anEnergy)

Here is the call graph for this function:

void G4FTFPAntiBarionBuilder::Build ( G4AntiAlphaInelasticProcess aP)
virtual

Implements G4VAntiBarionBuilder.

Definition at line 138 of file G4FTFPAntiBarionBuilder.cc.

139 {
140  theModel->SetMinEnergy(theMin);
141  theModel->SetMaxEnergy(theMax);
142  aP->AddDataSet(theAntiNucleonData);
143  aP->RegisterMe(theModel);
144 }
void RegisterMe(G4HadronicInteraction *a)
void SetMinEnergy(G4double anEnergy)
void AddDataSet(G4VCrossSectionDataSet *aDataSet)
void SetMaxEnergy(const G4double anEnergy)

Here is the call graph for this function:

void G4FTFPAntiBarionBuilder::SetMaxEnergy ( G4double  val)
inline

Definition at line 75 of file G4FTFPAntiBarionBuilder.hh.

75 {theMax = val;}
void G4FTFPAntiBarionBuilder::SetMinEnergy ( G4double  val)
inline

Definition at line 74 of file G4FTFPAntiBarionBuilder.hh.

74 {theMin = val;}

The documentation for this class was generated from the following files: