Geant4 Cross Reference |
1 // 1 // 2 // ******************************************* 2 // ******************************************************************** 3 // * License and Disclaimer 3 // * License and Disclaimer * 4 // * 4 // * * 5 // * The Geant4 software is copyright of th 5 // * The Geant4 software is copyright of the Copyright Holders of * 6 // * the Geant4 Collaboration. It is provided 6 // * the Geant4 Collaboration. It is provided under the terms and * 7 // * conditions of the Geant4 Software License 7 // * conditions of the Geant4 Software License, included in the file * 8 // * LICENSE and available at http://cern.ch/ 8 // * LICENSE and available at http://cern.ch/geant4/license . These * 9 // * include a list of copyright holders. 9 // * include a list of copyright holders. * 10 // * 10 // * * 11 // * Neither the authors of this software syst 11 // * Neither the authors of this software system, nor their employing * 12 // * institutes,nor the agencies providing fin 12 // * institutes,nor the agencies providing financial support for this * 13 // * work make any representation or warran 13 // * work make any representation or warranty, express or implied, * 14 // * regarding this software system or assum 14 // * regarding this software system or assume any liability for its * 15 // * use. Please see the license in the file 15 // * use. Please see the license in the file LICENSE and URL above * 16 // * for the full disclaimer and the limitatio 16 // * for the full disclaimer and the limitation of liability. * 17 // * 17 // * * 18 // * This code implementation is the result 18 // * This code implementation is the result of the scientific and * 19 // * technical work of the GEANT4 collaboratio 19 // * technical work of the GEANT4 collaboration. * 20 // * By using, copying, modifying or distri 20 // * By using, copying, modifying or distributing the software (or * 21 // * any work based on the software) you ag 21 // * any work based on the software) you agree to acknowledge its * 22 // * use in resulting scientific publicati 22 // * use in resulting scientific publications, and indicate your * 23 // * acceptance of all terms of the Geant4 Sof 23 // * acceptance of all terms of the Geant4 Software license. * 24 // ******************************************* 24 // ******************************************************************** 25 // 25 // 26 /// \file RE06/src/RE06PrimaryGeneratorAction. 26 /// \file RE06/src/RE06PrimaryGeneratorAction.cc 27 /// \brief Implementation of the RE06PrimaryGe 27 /// \brief Implementation of the RE06PrimaryGeneratorAction class 28 // 28 // >> 29 // $Id: RE06PrimaryGeneratorAction.cc 66526 2012-12-19 13:41:33Z ihrivnac $ 29 // 30 // 30 31 31 #include "RE06PrimaryGeneratorAction.hh" 32 #include "RE06PrimaryGeneratorAction.hh" 32 33 33 #include "G4Event.hh" 34 #include "G4Event.hh" 34 #include "G4ParticleDefinition.hh" << 35 #include "G4ParticleGun.hh" 35 #include "G4ParticleGun.hh" 36 #include "G4ParticleTable.hh" 36 #include "G4ParticleTable.hh" >> 37 #include "G4ParticleDefinition.hh" 37 #include "G4SystemOfUnits.hh" 38 #include "G4SystemOfUnits.hh" 38 39 39 //....oooOO0OOooo........oooOO0OOooo........oo 40 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo...... 40 41 41 RE06PrimaryGeneratorAction::RE06PrimaryGenerat 42 RE06PrimaryGeneratorAction::RE06PrimaryGeneratorAction() 42 : G4VUserPrimaryGeneratorAction(), fParticle << 43 : G4VUserPrimaryGeneratorAction(), >> 44 fParticleGun(0), >> 45 fSerial(false) 43 { 46 { 44 G4int n_particle = 1; 47 G4int n_particle = 1; 45 fParticleGun = new G4ParticleGun(n_particle) << 48 fParticleGun = new G4ParticleGun(n_particle); 46 << 49 47 // default particle kinematic 50 // default particle kinematic 48 G4ParticleTable* particleTable = G4ParticleT 51 G4ParticleTable* particleTable = G4ParticleTable::GetParticleTable(); 49 G4String particleName; 52 G4String particleName; 50 G4ParticleDefinition* particle = particleTab << 53 G4ParticleDefinition* particle >> 54 = particleTable->FindParticle(particleName="mu-"); 51 fParticleGun->SetParticleDefinition(particle 55 fParticleGun->SetParticleDefinition(particle); 52 fParticleGun->SetParticleMomentumDirection(G << 56 fParticleGun->SetParticleMomentumDirection(G4ThreeVector(0.,0.,1.)); 53 fParticleGun->SetParticleEnergy(100. * GeV); << 57 fParticleGun->SetParticleEnergy(100.*GeV); 54 } 58 } 55 59 56 //....oooOO0OOooo........oooOO0OOooo........oo 60 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo...... 57 61 58 RE06PrimaryGeneratorAction::~RE06PrimaryGenera 62 RE06PrimaryGeneratorAction::~RE06PrimaryGeneratorAction() 59 { 63 { 60 delete fParticleGun; 64 delete fParticleGun; 61 } 65 } 62 66 63 //....oooOO0OOooo........oooOO0OOooo........oo 67 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo...... 64 68 65 void RE06PrimaryGeneratorAction::GeneratePrima 69 void RE06PrimaryGeneratorAction::GeneratePrimaries(G4Event* anEvent) 66 { 70 { 67 if (fSerial) { << 71 if(fSerial) 68 fParticleGun->SetParticlePosition(G4ThreeV << 72 { >> 73 fParticleGun->SetParticlePosition(G4ThreeVector(0.,0.,-3.5*m)); 69 fParticleGun->GeneratePrimaryVertex(anEven 74 fParticleGun->GeneratePrimaryVertex(anEvent); 70 } 75 } 71 else { << 76 else 72 for (G4int i = 0; i < 3; i++) { << 77 { 73 fParticleGun->SetParticlePosition(G4Thre << 78 for(G4int i=0;i<3;i++) >> 79 { >> 80 fParticleGun >> 81 ->SetParticlePosition(G4ThreeVector(0.,G4double(i-1)*m,-1.5*m)); 74 fParticleGun->GeneratePrimaryVertex(anEv 82 fParticleGun->GeneratePrimaryVertex(anEvent); 75 } 83 } 76 } 84 } 77 } 85 } 78 86 79 //....oooOO0OOooo........oooOO0OOooo........oo 87 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo...... 80 88