// // ******************************************************************** // * 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: RE02EMPhysics.cc,v 1.3 2010/04/07 01:29:00 asaim Exp $ // -------------------------------------------------------------- // // // 09-Oct-2003 Change gamma, electron, positorn process T. Koi // 10-Jan-2004 Add Brems. of AlongStepDoIt for e+- T. Koi #include "RE02EMPhysics.hh" #include "globals.hh" #include "G4ios.hh" #include RE02EMPhysics::RE02EMPhysics(const G4String& name) : G4VPhysicsConstructor(name) { } RE02EMPhysics::~RE02EMPhysics() { } #include "G4ParticleDefinition.hh" #include "G4ParticleTable.hh" #include "G4Gamma.hh" #include "G4Electron.hh" #include "G4Positron.hh" #include "G4NeutrinoE.hh" #include "G4AntiNeutrinoE.hh" #include "G4ProcessManager.hh" void RE02EMPhysics::ConstructProcess() { G4ProcessManager * pManager = 0; //Gamma pManager = G4Gamma::Gamma()->GetProcessManager(); pManager->AddDiscreteProcess(new G4GammaConversion()); pManager->AddDiscreteProcess(new G4ComptonScattering()); pManager->AddDiscreteProcess(new G4PhotoElectricEffect()); //Electorn pManager = G4Electron::Electron()->GetProcessManager(); G4VProcess* theeminusMultipleScattering = new G4eMultipleScattering(); G4VProcess* theeminusIonisation = new G4eIonisation(); G4VProcess* theeminusBremsstrahlung = new G4eBremsstrahlung(); // // add process pManager->AddProcess(theeminusMultipleScattering); pManager->AddProcess(theeminusIonisation); pManager->AddProcess(theeminusBremsstrahlung); // // set ordering for AlongStepDoIt pManager->SetProcessOrdering(theeminusMultipleScattering, idxAlongStep,1); pManager->SetProcessOrdering(theeminusIonisation, idxAlongStep,2); pManager->SetProcessOrdering(theeminusBremsstrahlung, idxAlongStep,3); // // set ordering for PostStepDoIt pManager->SetProcessOrdering(theeminusMultipleScattering, idxPostStep,1); pManager->SetProcessOrdering(theeminusIonisation, idxPostStep,2); pManager->SetProcessOrdering(theeminusBremsstrahlung, idxPostStep,3); //Positron pManager = G4Positron::Positron()->GetProcessManager(); G4VProcess* theeplusMultipleScattering = new G4eMultipleScattering(); G4VProcess* theeplusIonisation = new G4eIonisation(); G4VProcess* theeplusBremsstrahlung = new G4eBremsstrahlung(); G4VProcess* theeplusAnnihilation = new G4eplusAnnihilation(); pManager->AddProcess(theeplusMultipleScattering); pManager->AddProcess(theeplusIonisation); pManager->AddProcess(theeplusBremsstrahlung); pManager->AddProcess(theeplusAnnihilation); // // set ordering for AtRestDoIt pManager->SetProcessOrderingToFirst(theeplusAnnihilation, idxAtRest); // // set ordering for AlongStepDoIt pManager->SetProcessOrdering(theeplusMultipleScattering, idxAlongStep,1); pManager->SetProcessOrdering(theeplusIonisation, idxAlongStep,2); pManager->SetProcessOrdering(theeplusBremsstrahlung, idxAlongStep,3); // // set ordering for PostStepDoIt pManager->SetProcessOrdering(theeplusMultipleScattering, idxPostStep,1); pManager->SetProcessOrdering(theeplusIonisation, idxPostStep,2); pManager->SetProcessOrdering(theeplusBremsstrahlung, idxPostStep,3); pManager->SetProcessOrdering(theeplusAnnihilation, idxPostStep,4); }