Loading...
Searching...
No Matches
F05PrimaryGeneratorAction.cc
Go to the documentation of this file.
1//
2// ********************************************************************
3// * License and Disclaimer *
4// * *
5// * The Geant4 software is copyright of the Copyright Holders of *
6// * the Geant4 Collaboration. It is provided under the terms and *
7// * conditions of the Geant4 Software License, included in the file *
8// * LICENSE and available at http://cern.ch/geant4/license . These *
9// * include a list of copyright holders. *
10// * *
11// * Neither the authors of this software system, nor their employing *
12// * institutes,nor the agencies providing financial support for this *
13// * work make any representation or warranty, express or implied, *
14// * regarding this software system or assume any liability for its *
15// * use. Please see the license in the file LICENSE and URL above *
16// * for the full disclaimer and the limitation of liability. *
17// * *
18// * This code implementation is the result of the scientific and *
19// * technical work of the GEANT4 collaboration. *
20// * By using, copying, modifying or distributing the software (or *
21// * any work based on the software) you agree to acknowledge its *
22// * use in resulting scientific publications, and indicate your *
23// * acceptance of all terms of the Geant4 Software license. *
24// ********************************************************************
25//
26//
27/// \file field/field05/src/F05PrimaryGeneratorAction.cc
28/// \brief Implementation of the F05PrimaryGeneratorAction class
29//
30
31//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
32//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
33
35
37
38#include "G4Event.hh"
39#include "G4ParticleGun.hh"
40#include "G4ParticleTable.hh"
41#include "G4ParticleDefinition.hh"
42#include "Randomize.hh"
43#include "G4SystemOfUnits.hh"
44
45//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
46
48{
49 G4int n_particle = 1;
50 fParticleGun = new G4ParticleGun(n_particle);
51
52 G4ParticleTable* particleTable = G4ParticleTable::GetParticleTable();
53 G4ParticleDefinition* particle = particleTable->FindParticle("mu+");
54
55 fParticleGun->SetParticleDefinition(particle);
56}
57
58//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
59
64
65//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
66
68{
69 //this function is called at the begining of event
70 //
71
72 G4double Pmu = 517.6*MeV;
73 G4double mu_mass = 105.658*MeV;
74 G4double Emu = std::sqrt(Pmu*Pmu + mu_mass*mu_mass);
75 G4double Kmu = Emu - mu_mass;
76
77 G4double x0 = -6.99*m;
78 G4double y0 = 0.00*m;
79 G4double z0 = 0.00*m;
80
81 fParticleGun->SetParticleEnergy(Kmu);
82 fParticleGun->SetParticlePosition(G4ThreeVector(x0,y0,z0));
83 fParticleGun->SetParticlePolarization(G4ThreeVector(0.,1.,0.));
84 fParticleGun->SetParticleMomentumDirection(G4ThreeVector(0.,1.,0.));
85
86 fParticleGun->GeneratePrimaryVertex(anEvent);
87}
88
89//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
Definition of the F05DetectorConstruction class.
Definition of the F05PrimaryGeneratorAction class.
void GeneratePrimaries(G4Event *) override

Applications | User Support | Publications | Collaboration