G4AntiBarionBuilder.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:   G4AntiBarionBuilder
00031 //
00032 // Author: 2011 J. Apostolakis
00033 //
00034 // Modified:
00035 //
00036 //----------------------------------------------------------------------------
00037 //
00038 #include "G4AntiBarionBuilder.hh"
00039 #include "G4ParticleDefinition.hh"
00040 #include "G4ParticleTable.hh"
00041 #include "G4ProcessManager.hh"
00042 
00043 G4AntiBarionBuilder::
00044 G4AntiBarionBuilder(): wasActivated(false) 
00045 {  
00046   theAntiProtonInelastic=new G4AntiProtonInelasticProcess;
00047   theAntiNeutronInelastic=new G4AntiNeutronInelasticProcess;
00048   theAntiDeuteronInelastic=new G4AntiDeuteronInelasticProcess;
00049   theAntiTritonInelastic=new G4AntiTritonInelasticProcess;
00050   theAntiHe3Inelastic=new G4AntiHe3InelasticProcess;
00051   theAntiAlphaInelastic=new G4AntiAlphaInelasticProcess;
00052 }
00053 
00054 G4AntiBarionBuilder::
00055 ~G4AntiBarionBuilder(){
00056   delete theAntiProtonInelastic;
00057   delete theAntiNeutronInelastic;
00058   delete theAntiDeuteronInelastic;
00059   delete theAntiTritonInelastic;
00060   delete theAntiHe3Inelastic;
00061   delete theAntiAlphaInelastic;
00062 }
00063 
00064 void G4AntiBarionBuilder::
00065 Build()
00066 {
00067   wasActivated = true;
00068 
00069   std::vector<G4VAntiBarionBuilder *>::iterator i;
00070   for(i=theModelCollections.begin(); i!=theModelCollections.end(); i++)
00071   {
00072     (*i)->Build(theAntiProtonInelastic);
00073     (*i)->Build(theAntiNeutronInelastic);
00074     (*i)->Build(theAntiDeuteronInelastic);
00075     (*i)->Build(theAntiTritonInelastic);
00076     (*i)->Build(theAntiHe3Inelastic);
00077     (*i)->Build(theAntiAlphaInelastic);
00078   }
00079   G4ProcessManager * theProcMan;
00080   theProcMan = G4AntiProton::AntiProton()->GetProcessManager();
00081   theProcMan->AddDiscreteProcess(theAntiProtonInelastic);
00082   
00083   theProcMan = G4AntiNeutron::AntiNeutron()->GetProcessManager();
00084   theProcMan->AddDiscreteProcess(theAntiNeutronInelastic);
00085   
00086   theProcMan = G4AntiDeuteron::AntiDeuteron()->GetProcessManager();
00087   theProcMan->AddDiscreteProcess(theAntiDeuteronInelastic);
00088 
00089   theProcMan = G4AntiTriton::AntiTriton()->GetProcessManager();
00090   theProcMan->AddDiscreteProcess(theAntiTritonInelastic);
00091   
00092   theProcMan = G4AntiHe3::AntiHe3()->GetProcessManager();
00093   theProcMan->AddDiscreteProcess(theAntiHe3Inelastic);
00094   
00095   theProcMan = G4AntiAlpha::AntiAlpha()->GetProcessManager();
00096   theProcMan->AddDiscreteProcess(theAntiAlphaInelastic);
00097 }
00098 

Generated on Mon May 27 17:47:39 2013 for Geant4 by  doxygen 1.4.7