| 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 | // $Id: ExN03PrimaryGeneratorAction.cc,v 1.1 2007/05/26 00:18:28 tkoi Exp $
|
|---|
| 28 | // GEANT4 tag $Name: geant4-09-04-beta-01 $
|
|---|
| 29 | //
|
|---|
| 30 | //
|
|---|
| 31 |
|
|---|
| 32 | //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
|
|---|
| 33 | //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
|
|---|
| 34 |
|
|---|
| 35 | #include "ExN03PrimaryGeneratorAction.hh"
|
|---|
| 36 |
|
|---|
| 37 | #include "ExN03DetectorConstruction.hh"
|
|---|
| 38 | #include "ExN03PrimaryGeneratorMessenger.hh"
|
|---|
| 39 |
|
|---|
| 40 | #include "G4Event.hh"
|
|---|
| 41 | #include "G4ParticleGun.hh"
|
|---|
| 42 | #include "G4ParticleTable.hh"
|
|---|
| 43 | #include "G4ParticleDefinition.hh"
|
|---|
| 44 | #include "Randomize.hh"
|
|---|
| 45 |
|
|---|
| 46 | //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
|
|---|
| 47 |
|
|---|
| 48 | ExN03PrimaryGeneratorAction::ExN03PrimaryGeneratorAction(
|
|---|
| 49 | ExN03DetectorConstruction* ExN03DC)
|
|---|
| 50 | :ExN03Detector(ExN03DC),rndmFlag("off")
|
|---|
| 51 | {
|
|---|
| 52 | G4int n_particle = 1;
|
|---|
| 53 | particleGun = new G4ParticleGun(n_particle);
|
|---|
| 54 |
|
|---|
| 55 | //create a messenger for this class
|
|---|
| 56 | gunMessenger = new ExN03PrimaryGeneratorMessenger(this);
|
|---|
| 57 |
|
|---|
| 58 | // default particle kinematic
|
|---|
| 59 |
|
|---|
| 60 | G4ParticleTable* particleTable = G4ParticleTable::GetParticleTable();
|
|---|
| 61 | G4String particleName;
|
|---|
| 62 | G4ParticleDefinition* particle
|
|---|
| 63 | = particleTable->FindParticle(particleName="e-");
|
|---|
| 64 | particleGun->SetParticleDefinition(particle);
|
|---|
| 65 | particleGun->SetParticleMomentumDirection(G4ThreeVector(1.,0.,0.));
|
|---|
| 66 | particleGun->SetParticleEnergy(50.*MeV);
|
|---|
| 67 | G4double position = -0.5*(ExN03Detector->GetWorldSizeX());
|
|---|
| 68 | particleGun->SetParticlePosition(G4ThreeVector(position,0.*cm,0.*cm));
|
|---|
| 69 |
|
|---|
| 70 | }
|
|---|
| 71 |
|
|---|
| 72 | //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
|
|---|
| 73 |
|
|---|
| 74 | ExN03PrimaryGeneratorAction::~ExN03PrimaryGeneratorAction()
|
|---|
| 75 | {
|
|---|
| 76 | delete particleGun;
|
|---|
| 77 | delete gunMessenger;
|
|---|
| 78 | }
|
|---|
| 79 |
|
|---|
| 80 | //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
|
|---|
| 81 |
|
|---|
| 82 | void ExN03PrimaryGeneratorAction::GeneratePrimaries(G4Event* anEvent)
|
|---|
| 83 | {
|
|---|
| 84 | //this function is called at the begining of event
|
|---|
| 85 | //
|
|---|
| 86 | G4double x0 = -0.5*(ExN03Detector->GetWorldSizeX());
|
|---|
| 87 | G4double y0 = 0.*cm, z0 = 0.*cm;
|
|---|
| 88 | if (rndmFlag == "on")
|
|---|
| 89 | {y0 = (ExN03Detector->GetCalorSizeYZ())*(G4UniformRand()-0.5);
|
|---|
| 90 | z0 = (ExN03Detector->GetCalorSizeYZ())*(G4UniformRand()-0.5);
|
|---|
| 91 | }
|
|---|
| 92 | particleGun->SetParticlePosition(G4ThreeVector(x0,y0,z0));
|
|---|
| 93 |
|
|---|
| 94 | particleGun->GeneratePrimaryVertex(anEvent);
|
|---|
| 95 | }
|
|---|
| 96 |
|
|---|
| 97 | //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
|
|---|
| 98 |
|
|---|