G4StoppingHadronBuilder.cc

Go to the documentation of this file.
00001 //
00002 // ********************************************************************
00003 // * License and Disclaimer                                           *
00004 // *                                                                  *
00005 // * The  Geant4 software  is  copyright of the Copyright Holders  of *
00006 // * the Geant4 Collaboration.  It is provided  under  the terms  and *
00007 // * conditions of the Geant4 Software License,  included in the file *
00008 // * LICENSE and available at  http://cern.ch/geant4/license .  These *
00009 // * include a list of copyright holders.                             *
00010 // *                                                                  *
00011 // * Neither the authors of this software system, nor their employing *
00012 // * institutes,nor the agencies providing financial support for this *
00013 // * work  make  any representation or  warranty, express or implied, *
00014 // * regarding  this  software system or assume any liability for its *
00015 // * use.  Please see the license in the file  LICENSE  and URL above *
00016 // * for the full disclaimer and the limitation of liability.         *
00017 // *                                                                  *
00018 // * This  code  implementation is the result of  the  scientific and *
00019 // * technical work of the GEANT4 collaboration.                      *
00020 // * By using,  copying,  modifying or  distributing the software (or *
00021 // * any work based  on the software)  you  agree  to acknowledge its *
00022 // * use  in  resulting  scientific  publications,  and indicate your *
00023 // * acceptance of all terms of the Geant4 Software license.          *
00024 // ********************************************************************
00025 //
00026 // $Id$
00027 //
00028 //---------------------------------------------------------------------------
00029 //
00030 // ClassName:   G4StoppingHadronBuilder
00031 //
00032 // Author: 2002 J.P. Wellisch
00033 //
00034 // Modified:
00035 // 10.11.2005 V.Ivanchenko edit to provide a standard and add mu-
00036 //----------------------------------------------------------------------------
00037 //
00038 
00039 #include "G4StoppingHadronBuilder.hh"
00040 #include "G4MuonMinusCaptureAtRest.hh"
00041 #include "G4AntiProtonAnnihilationAtRest.hh"
00042 #include "G4AntiNeutronAnnihilationAtRest.hh"
00043 #include "G4PionMinusAbsorptionAtRest.hh"
00044 #include "G4KaonMinusAbsorption.hh"
00045 
00046 #include "G4ParticleTable.hh"
00047 #include "G4ProcessManager.hh"
00048 #include "G4PionMinus.hh"
00049 #include "G4KaonMinus.hh"
00050 #include "G4AntiProton.hh"
00051 #include "G4AntiNeutron.hh"
00052 
00053 G4StoppingHadronBuilder::G4StoppingHadronBuilder():
00054  theMuonMinusAbsorption(0),thePionMinusAbsorption(0),
00055  theKaonMinusAbsorption(0), theAntiProtonAnnihilation(0),
00056  theAntiNeutronAnnihilation(0),
00057  wasActivated(false)
00058 {}
00059 
00060 G4StoppingHadronBuilder::~G4StoppingHadronBuilder()
00061 {
00062   if(wasActivated) {
00063     delete theMuonMinusAbsorption;
00064     delete thePionMinusAbsorption;
00065     delete theKaonMinusAbsorption;
00066     delete theAntiProtonAnnihilation;
00067     delete theAntiNeutronAnnihilation;
00068   }
00069 }
00070 
00071 void G4StoppingHadronBuilder::Build()
00072 {
00073   G4ProcessManager * aProcMan = 0;
00074   wasActivated=true;
00075 //G4cout << " adding stopping hadron Physics" << G4endl;
00076 
00077   // Muon Minus Physics
00078   aProcMan = G4MuonMinus::MuonMinus()->GetProcessManager();
00079   theMuonMinusAbsorption = new G4MuonMinusCaptureAtRest();
00080   aProcMan->AddRestProcess(theMuonMinusAbsorption);
00081 
00082   // PionMinus
00083   aProcMan = G4PionMinus::PionMinus()->GetProcessManager();
00084   thePionMinusAbsorption = new G4PionMinusAbsorptionAtRest();
00085   aProcMan->AddRestProcess(thePionMinusAbsorption);
00086 
00087   // KaonMinus
00088   aProcMan = G4KaonMinus::KaonMinus()->GetProcessManager();
00089   theKaonMinusAbsorption = new G4KaonMinusAbsorption();
00090   aProcMan->AddRestProcess(theKaonMinusAbsorption);
00091 
00092   // anti-Proton
00093   aProcMan = G4AntiProton::AntiProton()->GetProcessManager();
00094   theAntiProtonAnnihilation = new G4AntiProtonAnnihilationAtRest();
00095   aProcMan->AddRestProcess(theAntiProtonAnnihilation);
00096 
00097   // AntiNeutron
00098   aProcMan = G4AntiNeutron::AntiNeutron()->GetProcessManager();
00099   theAntiNeutronAnnihilation = new G4AntiNeutronAnnihilationAtRest();
00100   aProcMan->AddRestProcess(theAntiNeutronAnnihilation);
00101 
00102 }

Generated on Mon May 27 17:49:55 2013 for Geant4 by  doxygen 1.4.7