// // ******************************************************************** // * 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. * // ******************************************************************** // // // $Id: G4LeptonConstructor.cc,v 1.5 2006/06/29 19:21:31 gunter Exp $ // GEANT4 tag $Name: geant4-09-04-beta-01 $ // // // -------------------------------------------------------------- // GEANT 4 class implementatLepton file // #include "G4LeptonConstructor.hh" #include "G4ParticleDefinition.hh" #include "G4ParticleTable.hh" // Leptons #include "G4MuonPlus.hh" #include "G4MuonMinus.hh" #include "G4TauMinus.hh" #include "G4TauPlus.hh" #include "G4Electron.hh" #include "G4Positron.hh" #include "G4NeutrinoTau.hh" #include "G4AntiNeutrinoTau.hh" #include "G4NeutrinoMu.hh" #include "G4AntiNeutrinoMu.hh" #include "G4NeutrinoE.hh" #include "G4AntiNeutrinoE.hh" G4LeptonConstructor::G4LeptonConstructor() { } G4LeptonConstructor::~G4LeptonConstructor() { } void G4LeptonConstructor::ConstructParticle() { ConstructELeptons(); ConstructMuLeptons(); ConstructTauLeptons(); } void G4LeptonConstructor::ConstructELeptons() { G4Electron::ElectronDefinition(); G4Positron::PositronDefinition(); G4NeutrinoE::NeutrinoEDefinition(); G4AntiNeutrinoE::AntiNeutrinoEDefinition(); } void G4LeptonConstructor::ConstructMuLeptons() { G4MuonPlus::MuonPlusDefinition(); G4MuonMinus::MuonMinusDefinition(); G4NeutrinoMu::NeutrinoMuDefinition(); G4AntiNeutrinoMu::AntiNeutrinoMuDefinition(); } void G4LeptonConstructor::ConstructTauLeptons() { G4TauMinus::TauMinusDefinition(); G4TauPlus::TauPlusDefinition(); G4NeutrinoTau::NeutrinoTauDefinition(); G4AntiNeutrinoTau::AntiNeutrinoTauDefinition(); }