source: trunk/examples/advanced/purging_magnet/src/PurgMagPrimaryGeneratorAction.cc@ 1214

Last change on this file since 1214 was 807, checked in by garnier, 17 years ago

update

File size: 4.1 KB
Line 
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// Code developed by:
27// S.Larsson
28//
29// ********************************************
30// * *
31// * PurgMagPrimaryGeneratorAction.cc *
32// * *
33// ********************************************
34//
35// $Id: PurgMagPrimaryGeneratorAction.cc,v 1.3 2006/06/29 16:06:17 gunter Exp $
36// GEANT4 tag $Name: $
37//
38
39//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo....
40
41#include "PurgMagPrimaryGeneratorAction.hh"
42
43#include "PurgMagDetectorConstruction.hh"
44
45#include "G4Event.hh"
46#include "G4ParticleGun.hh"
47#include "G4ParticleTable.hh"
48#include "G4ParticleDefinition.hh"
49#include "Randomize.hh"
50#include "G4UnitsTable.hh"
51
52//Print position of primaries.
53#define POSITION 0
54
55//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo....
56
57PurgMagPrimaryGeneratorAction::PurgMagPrimaryGeneratorAction(PurgMagDetectorConstruction* PurgMagDC)
58 :PurgMagDetector(PurgMagDC),rndmVertex(false)
59{
60 //default kinematic
61 G4int n_particle = 1;
62 particleGun = new G4ParticleGun(n_particle);
63
64 G4ParticleDefinition* particle
65 =
66
67 G4ParticleTable::GetParticleTable()->FindParticle("e-");
68 particleGun->SetParticleDefinition(particle);
69 particleGun->SetParticleEnergy(50.*MeV);
70
71 //Momentum Direction
72 particleGun->SetParticleMomentumDirection(G4ThreeVector(0.,0.,-1.));
73
74}
75
76//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo....
77
78PurgMagPrimaryGeneratorAction::~PurgMagPrimaryGeneratorAction()
79{
80 delete particleGun;
81 }
82
83//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo....
84
85void PurgMagPrimaryGeneratorAction::GeneratePrimaries(G4Event* anEvent)
86{
87 //this function is called at the begining of event
88 //Start position of primaries
89 G4double z0 = 15.*cm;
90 G4double x0 = 0.*cm;
91 G4double y0 = 0.*cm;
92 particleGun->SetParticlePosition(G4ThreeVector(x0,y0,z0));
93 particleGun->GeneratePrimaryVertex(anEvent);
94
95#if POSITION
96 G4cout << "\n----Particle Gun--------------------------------------------\n";
97 G4cout << "\n ---> SetParticlePosition(G4ThreeVector(x0,y0,z0)) ";
98 G4cout << "\n ---> x0 = " << x0 << " "<< G4BestUnit(x0,"Length");
99 G4cout << "\n ---> y0 = " << y0 << " "<< G4BestUnit(y0,"Length");
100 G4cout << "\n ---> z0 = " << z0 << " "<< G4BestUnit(z0,"Length");
101 G4cout << "\n-----------------------------------------------------------\n";
102#endif
103}
104
105//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo....
106
107
Note: See TracBrowser for help on using the repository browser.