// // ******************************************************************** // * License and Disclaimer * // * * // * The Geant4 software is copyright of the Copyright Holders of * // * the Geant4 Collaboration. It is provided under the terms and * // * conditions of the Geant4 Software License, included in the file * // * LICENSE and available at http://cern.ch/geant4/license . These * // * include a list of copyright holders. * // * * // * Neither the authors of this software system, nor their employing * // * institutes,nor the agencies providing financial support for this * // * work make any representation or warranty, express or implied, * // * regarding this software system or assume any liability for its * // * use. Please see the license in the file LICENSE and URL above * // * for the full disclaimer and the limitation of liability. * // * * // * This code implementation is the result of the scientific and * // * technical work of the GEANT4 collaboration. * // * By using, copying, modifying or distributing the software (or * // * any work based on the software) you agree to acknowledge its * // * use in resulting scientific publications, and indicate your * // * acceptance of all terms of the Geant4 Software license. * // ******************************************************************** // /////////////////////////////////////////////////////////////////////////////// // // MODULE: G4SingleParticleSource.hh // // Version: 1.0 // Date: 5/02/04 // Author: Fan Lei // Organisation: QinetiQ ltd. // Customer: ESA/ESTEC // /////////////////////////////////////////////////////////////////////////////// // // CHANGE HISTORY // -------------- // // Version 1.0, 05/02/2004, Fan Lei, Created. // Based on the G4GeneralParticleSource class in Geant4 v6.0 // /////////////////////////////////////////////////////////////////////////////// // #include "G4PrimaryParticle.hh" #include "G4Event.hh" #include "Randomize.hh" #include #include "G4ParticleTable.hh" #include "G4Geantino.hh" #include "G4ParticleDefinition.hh" #include "G4IonTable.hh" #include "G4Ions.hh" #include "G4TrackingManager.hh" #include "G4Track.hh" #include "G4SingleParticleSource.hh" G4SingleParticleSource::G4SingleParticleSource() { // Initialise all variables // Position distribution Variables NumberOfParticlesToBeGenerated = 1; particle_definition = G4Geantino::GeantinoDefinition(); G4ThreeVector zero; particle_momentum_direction = G4ParticleMomentum(1,0,0); particle_energy = 1.0*MeV; particle_position = zero; particle_time = 0.0; particle_polarization = zero; particle_charge = 0.0; particle_weight = 1.0; biasRndm = new G4SPSRandomGenerator(); posGenerator = new G4SPSPosDistribution(); posGenerator->SetBiasRndm(biasRndm); angGenerator = new G4SPSAngDistribution(); angGenerator->SetPosDistribution(posGenerator); angGenerator->SetBiasRndm(biasRndm); eneGenerator = new G4SPSEneDistribution(); eneGenerator->SetBiasRndm(biasRndm); // verbosity verbosityLevel = 0; } G4SingleParticleSource::~G4SingleParticleSource() {} void G4SingleParticleSource::SetVerbosity(int vL) { verbosityLevel = vL; posGenerator->SetVerbosity(vL); angGenerator->SetVerbosity(vL); eneGenerator->SetVerbosity(vL); G4cout << "Verbosity Set to: " << verbosityLevel << G4endl; } void G4SingleParticleSource::SetParticleDefinition (G4ParticleDefinition* aParticleDefinition) { particle_definition = aParticleDefinition; particle_charge = particle_definition->GetPDGCharge(); } void G4SingleParticleSource::GeneratePrimaryVertex(G4Event *evt) { if(particle_definition==NULL) return; if(verbosityLevel > 1) G4cout << " NumberOfParticlesToBeGenerated: "<GenerateOne(); // create a new vertex G4PrimaryVertex* vertex = new G4PrimaryVertex(particle_position,particle_time); for( G4int i=0; iGenerateOne(); // Energy stuff particle_energy = eneGenerator->GenerateOne(particle_definition); if(verbosityLevel >= 2) G4cout << "Creating primaries and assigning to vertex" << G4endl; // create new primaries and set them to the vertex G4double mass = particle_definition->GetPDGMass(); G4double energy = particle_energy + mass; G4double pmom = std::sqrt(energy*energy-mass*mass); G4double px = pmom*particle_momentum_direction.x(); G4double py = pmom*particle_momentum_direction.y(); G4double pz = pmom*particle_momentum_direction.z(); if(verbosityLevel > 1){ G4cout << "Particle name: "<GetParticleName() << G4endl; G4cout << " Energy: "<SetMass( mass ); particle->SetCharge( particle_charge ); particle->SetPolarization(particle_polarization.x(), particle_polarization.y(), particle_polarization.z()); // Set bweight equal to the multiple of all non-zero weights particle_weight = biasRndm->GetBiasWeight(); // pass it to primary particle particle->SetWeight(particle_weight); vertex->SetPrimary( particle ); } // now pass the weight to the primary vertex. CANNOT be used here! // vertex->SetWeight(particle_weight); evt->AddPrimaryVertex( vertex ); if(verbosityLevel > 1) G4cout << " Primary Vetex generated !"<< G4endl; }