155 lines
4.8 KiB
C++
155 lines
4.8 KiB
C++
//
|
|
// ********************************************************************
|
|
// * 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: G4EmExtraPhysics.cc,v 1.3 2008/01/08 10:36:32 vnivanch Exp $
|
|
// GEANT4 tag $Name: geant4-09-02 $
|
|
//
|
|
//---------------------------------------------------------------------------
|
|
//
|
|
// ClassName: G4EmExtraPhysics
|
|
//
|
|
// Author: 2002 J.P. Wellisch
|
|
//
|
|
// Modified:
|
|
// 10.11.2005 V.Ivanchenko edit to provide a standard
|
|
// 19.06.2006 V.Ivanchenko add mu-nuclear process
|
|
//
|
|
//----------------------------------------------------------------------------
|
|
//
|
|
|
|
#include "G4EmExtraPhysics.hh"
|
|
|
|
#include "G4SynchrotronRadiation.hh"
|
|
|
|
#include "G4ParticleDefinition.hh"
|
|
#include "G4ParticleTable.hh"
|
|
#include "G4Gamma.hh"
|
|
#include "G4Electron.hh"
|
|
#include "G4Positron.hh"
|
|
#include "G4MuonPlus.hh"
|
|
#include "G4MuonMinus.hh"
|
|
#include "G4ProcessManager.hh"
|
|
|
|
G4EmExtraPhysics::G4EmExtraPhysics(const G4String& name):
|
|
G4VPhysicsConstructor(name), wasBuilt(false), gnActivated(false), munActivated(false),
|
|
synActivated(false), synchOn(false), gammNucOn(true), muNucOn(false),
|
|
theElectronSynch(0), thePositronSynch(0), theGNPhysics(0), theMuNuc1(0),
|
|
theMuNuc2(0)
|
|
{
|
|
theMessenger = new G4EmMessenger(this);
|
|
}
|
|
|
|
G4EmExtraPhysics::~G4EmExtraPhysics()
|
|
{
|
|
delete theMessenger;
|
|
delete theElectronSynch;
|
|
delete thePositronSynch;
|
|
delete theGNPhysics;
|
|
delete theMuNuc1;
|
|
delete theMuNuc2;
|
|
}
|
|
|
|
void G4EmExtraPhysics::Synch(G4String & newState)
|
|
{
|
|
if(newState == "on" || newState == "ON") {
|
|
synchOn = true;
|
|
if(wasBuilt) BuildSynch();
|
|
} else synchOn = false;
|
|
}
|
|
|
|
void G4EmExtraPhysics::GammaNuclear(G4String & newState)
|
|
{
|
|
if(newState == "on" || newState == "ON") {
|
|
gammNucOn = true;
|
|
if(wasBuilt) BuildGammaNuclear();
|
|
} else gammNucOn = false;
|
|
}
|
|
|
|
void G4EmExtraPhysics::MuonNuclear(G4String & newState)
|
|
{
|
|
if(newState == "on" || newState == "ON") {
|
|
muNucOn = true;
|
|
if(wasBuilt) BuildMuonNuclear();
|
|
} else muNucOn = false;
|
|
}
|
|
|
|
void G4EmExtraPhysics::ConstructParticle()
|
|
{
|
|
G4Gamma::Gamma();
|
|
G4Electron::Electron();
|
|
G4Positron::Positron();
|
|
G4MuonPlus::MuonPlus();
|
|
G4MuonMinus::MuonMinus();
|
|
}
|
|
|
|
void G4EmExtraPhysics::ConstructProcess()
|
|
{
|
|
if(wasBuilt) return;
|
|
wasBuilt = true;
|
|
|
|
if (synchOn) BuildSynch();
|
|
if (gammNucOn) BuildGammaNuclear();
|
|
if (muNucOn) BuildMuonNuclear();
|
|
}
|
|
|
|
void G4EmExtraPhysics::BuildMuonNuclear()
|
|
{
|
|
if(munActivated) return;
|
|
munActivated = true;
|
|
G4ProcessManager * pManager = 0;
|
|
|
|
pManager = G4MuonPlus::MuonPlus()->GetProcessManager();
|
|
theMuNuc1 = new G4MuNuclearInteraction("muNucl");
|
|
pManager->AddDiscreteProcess(theMuNuc1);
|
|
|
|
pManager = G4MuonMinus::MuonMinus()->GetProcessManager();
|
|
theMuNuc2 = new G4MuNuclearInteraction("muNucl");
|
|
pManager->AddDiscreteProcess(theMuNuc2);
|
|
}
|
|
|
|
void G4EmExtraPhysics::BuildGammaNuclear()
|
|
{
|
|
if(gnActivated) return;
|
|
gnActivated = true;
|
|
|
|
theGNPhysics = new G4ElectroNuclearBuilder();
|
|
theGNPhysics->Build();
|
|
}
|
|
|
|
void G4EmExtraPhysics::BuildSynch()
|
|
{
|
|
if(synActivated) return;
|
|
synActivated = true;
|
|
G4ProcessManager * pManager = 0;
|
|
|
|
pManager = G4Electron::Electron()->GetProcessManager();
|
|
theElectronSynch = new G4SynchrotronRadiation();
|
|
pManager->AddDiscreteProcess(theElectronSynch);
|
|
|
|
pManager = G4Positron::Positron()->GetProcessManager();
|
|
thePositronSynch = new G4SynchrotronRadiation();
|
|
pManager->AddDiscreteProcess(thePositronSynch);
|
|
}
|