Geant4.10
All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
Public Member Functions
NeutronHPphysics Class Reference

#include <NeutronHPphysics.hh>

Inheritance diagram for NeutronHPphysics:
G4VPhysicsConstructor

Public Member Functions

 NeutronHPphysics (const G4String &name="neutron")
 
 ~NeutronHPphysics ()
 
virtual void ConstructParticle ()
 
virtual void ConstructProcess ()
 
void SetThermalPhysics (G4bool flag)
 
- Public Member Functions inherited from G4VPhysicsConstructor
 G4VPhysicsConstructor (const G4String &="")
 
 G4VPhysicsConstructor (const G4String &name, G4int physics_type)
 
virtual ~G4VPhysicsConstructor ()
 
void SetPhysicsName (const G4String &="")
 
const G4StringGetPhysicsName () const
 
void SetPhysicsType (G4int)
 
G4int GetPhysicsType () const
 
void SetVerboseLevel (G4int value)
 
G4int GetVerboseLevel () const
 
G4int GetInstanceID () const
 

Additional Inherited Members

- Static Public Member Functions inherited from G4VPhysicsConstructor
static const G4VPCManagerGetSubInstanceManager ()
 
- Protected Member Functions inherited from G4VPhysicsConstructor
G4bool RegisterProcess (G4VProcess *process, G4ParticleDefinition *particle)
 
- Protected Attributes inherited from G4VPhysicsConstructor
G4int verboseLevel
 
G4String namePhysics
 
G4int typePhysics
 
G4ParticleTabletheParticleTable
 
G4int g4vpcInstanceID
 
- Static Protected Attributes inherited from G4VPhysicsConstructor
static G4RUN_DLL G4VPCManager subInstanceManager
 

Detailed Description

Definition at line 44 of file NeutronHPphysics.hh.

Constructor & Destructor Documentation

NeutronHPphysics::NeutronHPphysics ( const G4String name = "neutron")

Definition at line 65 of file NeutronHPphysics.cc.

66 : G4VPhysicsConstructor(name), fThermal(true), fNeutronMessenger(0)
67 {
68  fNeutronMessenger = new NeutronHPMessenger(this);
69 }
G4VPhysicsConstructor(const G4String &="")
NeutronHPphysics::~NeutronHPphysics ( )

Definition at line 73 of file NeutronHPphysics.cc.

74 {
75  delete fNeutronMessenger;
76 }

Member Function Documentation

virtual void NeutronHPphysics::ConstructParticle ( void  )
inlinevirtual

Implements G4VPhysicsConstructor.

Definition at line 51 of file NeutronHPphysics.hh.

51 { };
void NeutronHPphysics::ConstructProcess ( void  )
virtual

Implements G4VPhysicsConstructor.

Definition at line 80 of file NeutronHPphysics.cc.

References G4HadronicProcess::AddDataSet(), G4ProcessManager::AddDiscreteProcess(), python.hepunit::eV, G4ParticleDefinition::GetProcessManager(), G4Neutron::Neutron(), G4HadronicProcess::RegisterMe(), and G4HadronicInteraction::SetMinEnergy().

81 {
83 
84  // process: elastic
85  //
87  pManager->AddDiscreteProcess(process1);
88  //
89  // cross section data set
93  process1->AddDataSet(dataSet1a);
94  if (fThermal) process1->AddDataSet(dataSet1b);
95  //
96  // models
97  G4NeutronHPElastic* model1a = new G4NeutronHPElastic();
99  if (fThermal) model1a->SetMinEnergy(4*eV);
100  process1->RegisterMe(model1a);
101  if (fThermal) process1->RegisterMe(model1b);
102 
103  // process: inelastic
104  //
106  pManager->AddDiscreteProcess(process2);
107  //
108  // cross section data set
110  process2->AddDataSet(dataSet2);
111  //
112  // models
114  process2->RegisterMe(model2);
115 
116  // process: nCapture
117  //
119  pManager->AddDiscreteProcess(process3);
120  //
121  // cross section data set
123  process3->AddDataSet(dataSet3);
124  //
125  // models
126  G4NeutronHPCapture* model3 = new G4NeutronHPCapture();
127  process3->RegisterMe(model3);
128 
129  // process: nFission
130  //
132  pManager->AddDiscreteProcess(process4);
133  //
134  // cross section data set
136  process4->AddDataSet(dataSet4);
137  //
138  // models
139  G4NeutronHPFission* model4 = new G4NeutronHPFission();
140  process4->RegisterMe(model4);
141 }
G4int AddDiscreteProcess(G4VProcess *aProcess, G4int ord=ordDefault)
G4ProcessManager * GetProcessManager() const
void RegisterMe(G4HadronicInteraction *a)
void SetMinEnergy(G4double anEnergy)
void AddDataSet(G4VCrossSectionDataSet *aDataSet)
static G4Neutron * Neutron()
Definition: G4Neutron.cc:104
void NeutronHPphysics::SetThermalPhysics ( G4bool  flag)
inline

Definition at line 55 of file NeutronHPphysics.hh.

Referenced by NeutronHPMessenger::SetNewValue().

55 {fThermal = flag;};

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