Warning, file /geant4/examples/extended/hadronic/FissionFragment/src/FFPrimaryGeneratorAction.cc was not indexed
or was modified since last indexation (in which case cross-reference links may be missing, inaccurate or erroneous).
0001
0002
0003
0004
0005
0006
0007
0008
0009
0010
0011
0012
0013
0014
0015
0016
0017
0018
0019
0020
0021
0022
0023
0024
0025
0026
0027
0028
0029
0030
0031
0032
0033
0034
0035
0036
0037
0038
0039
0040
0041
0042
0043
0044
0045
0046
0047
0048
0049 #include "FFPrimaryGeneratorAction.hh"
0050
0051 #include "G4Event.hh"
0052 #include "G4LogicalVolume.hh"
0053 #include "G4LogicalVolumeStore.hh"
0054 #include "G4Neutron.hh"
0055 #include "G4ParticleGun.hh"
0056 #include "G4PhysicalVolumeStore.hh"
0057 #include "G4SystemOfUnits.hh"
0058 #include "G4Tubs.hh"
0059 #include "G4VPhysicalVolume.hh"
0060 #include "Randomize.hh"
0061 #include "globals.hh"
0062
0063
0064 FFPrimaryGeneratorAction::FFPrimaryGeneratorAction()
0065 : G4VUserPrimaryGeneratorAction(),
0066 #ifndef NDEBUG
0067 fEventNumber(0),
0068 #endif
0069 fH2OPhysical(NULL),
0070 fNeutronPhysical(NULL),
0071 fNeutronSolid(NULL),
0072 fParticleGun(new G4ParticleGun(1)),
0073 fTankPhysical(NULL)
0074 {
0075 fParticleGun->SetParticleDefinition(G4Neutron::Definition());
0076 fParticleGun->SetParticleEnergy(4.5 * MeV);
0077 }
0078
0079
0080 void FFPrimaryGeneratorAction::GeneratePrimaries(G4Event* event)
0081 {
0082 #ifndef NDEBUG
0083 G4cout << "Shooting event " << ++fEventNumber << G4endl;
0084 #endif
0085 const G4ThreeVector sourceCenter = GetNeutronSourceCenter();
0086
0087
0088 const G4double radius = fNeutronSolid->GetOuterRadius();
0089 const G4double z = fNeutronSolid->GetZHalfLength() * 2;
0090 G4ThreeVector randomLocation;
0091 randomLocation.setRThetaPhi(radius * std::sqrt(G4UniformRand()), G4UniformRand() * 180 * deg, 0);
0092 randomLocation.setZ(z * (G4UniformRand() - 0.5));
0093 G4ThreeVector location(randomLocation.x() + sourceCenter.x(),
0094 randomLocation.y() + sourceCenter.y(),
0095 randomLocation.z() + sourceCenter.z());
0096 #ifndef NDEBUG
0097 G4cout << "Emission Location: r: " << location << G4endl;
0098 #endif
0099
0100
0101 G4ThreeVector direction;
0102 direction.setRThetaPhi(1.0, std::acos(G4UniformRand() * 2 - 1),
0103 (G4UniformRand() * 2 - 1) * 180 * deg);
0104 #ifndef NDEBUG
0105 G4cout << "Emission Direction: r: " << direction << G4endl;
0106 #endif
0107
0108
0109 fParticleGun->SetParticlePosition(location);
0110 fParticleGun->SetParticleMomentumDirection(direction);
0111 fParticleGun->GeneratePrimaryVertex(event);
0112 }
0113
0114
0115 G4ThreeVector FFPrimaryGeneratorAction::GetNeutronSourceCenter(void)
0116 {
0117
0118 if (fNeutronSolid == NULL) {
0119 G4LogicalVolume* temp = G4LogicalVolumeStore::GetInstance()->GetVolume("NeutronSource");
0120 if (temp != NULL) {
0121 fNeutronSolid = dynamic_cast<G4Tubs*>(temp->GetSolid());
0122 }
0123
0124 if (fNeutronSolid == NULL) {
0125 G4Exception(
0126 "FFPrimaryGeneratorAction::"
0127 "GeneratePrimaries(G4Event*)",
0128 "Neutron source solid volume not found", EventMustBeAborted, "This run will be aborted");
0129 }
0130 }
0131
0132
0133 if (fNeutronPhysical == NULL) {
0134 fNeutronPhysical = G4PhysicalVolumeStore::GetInstance()->GetVolume("NeutronSource");
0135 }
0136
0137 if (fNeutronPhysical == NULL) {
0138 G4Exception("FFPrimaryGeneratorAction::GetNeutronSourceCenter(void)",
0139 "Neutron source physical volume not found", EventMustBeAborted,
0140 "This run will be aborted");
0141 }
0142
0143
0144 if (fH2OPhysical == NULL) {
0145 fH2OPhysical = G4PhysicalVolumeStore::GetInstance()->GetVolume("Tank_H2O");
0146
0147 if (fH2OPhysical == NULL) {
0148 G4Exception(
0149 "FFPrimaryGeneratorAction::"
0150 "GetNeutronSourceCenter(void)",
0151 "Tank H2O physical volume not found", EventMustBeAborted, "This run will be aborted");
0152 }
0153 }
0154
0155
0156 if (fTankPhysical == NULL) {
0157 fTankPhysical = G4PhysicalVolumeStore::GetInstance()->GetVolume("Tank_Wall");
0158
0159 if (fTankPhysical == NULL) {
0160 G4Exception(
0161 "FFPrimaryGeneratorAction::"
0162 "GetNeutronSourceCenter(void)",
0163 "Tank physical volume not found", EventMustBeAborted, "This run will be aborted");
0164 }
0165 }
0166
0167 return fNeutronPhysical->GetTranslation() + fH2OPhysical->GetTranslation()
0168 + fTankPhysical->GetTranslation();
0169 }
0170
0171
0172 FFPrimaryGeneratorAction::~FFPrimaryGeneratorAction()
0173 {
0174 delete fParticleGun;
0175 }