#include <G4BinaryNeutronBuilder.hh>
Inheritance diagram for G4BinaryNeutronBuilder:

Public Member Functions | |
| G4BinaryNeutronBuilder () | |
| virtual | ~G4BinaryNeutronBuilder () |
| virtual void | Build (G4HadronElasticProcess *aP) |
| virtual void | Build (G4HadronFissionProcess *aP) |
| virtual void | Build (G4HadronCaptureProcess *aP) |
| virtual void | Build (G4NeutronInelasticProcess *aP) |
| void | SetMinEnergy (G4double aM) |
| void | SetMaxEnergy (G4double aM) |
Definition at line 52 of file G4BinaryNeutronBuilder.hh.
| G4BinaryNeutronBuilder::G4BinaryNeutronBuilder | ( | ) |
Definition at line 46 of file G4BinaryNeutronBuilder.cc.
00047 { 00048 theMin = 0; 00049 theMax = 9.9*GeV; 00050 theModel = new G4BinaryCascade(); 00051 }
| G4BinaryNeutronBuilder::~G4BinaryNeutronBuilder | ( | ) | [virtual] |
| void G4BinaryNeutronBuilder::Build | ( | G4NeutronInelasticProcess * | aP | ) | [virtual] |
Implements G4VNeutronBuilder.
Definition at line 54 of file G4BinaryNeutronBuilder.cc.
References G4HadronicProcess::RegisterMe(), G4HadronicInteraction::SetMaxEnergy(), and G4HadronicInteraction::SetMinEnergy().
00055 { 00056 theModel->SetMinEnergy(theMin); 00057 theModel->SetMaxEnergy(theMax); 00058 aP->RegisterMe(theModel); 00059 }
| void G4BinaryNeutronBuilder::Build | ( | G4HadronCaptureProcess * | aP | ) | [virtual] |
| void G4BinaryNeutronBuilder::Build | ( | G4HadronFissionProcess * | aP | ) | [virtual] |
| void G4BinaryNeutronBuilder::Build | ( | G4HadronElasticProcess * | aP | ) | [virtual] |
| void G4BinaryNeutronBuilder::SetMaxEnergy | ( | G4double | aM | ) | [inline] |
| void G4BinaryNeutronBuilder::SetMinEnergy | ( | G4double | aM | ) | [inline] |
1.4.7