source: trunk/source/physics_lists/builders/src/G4MiscCHIPSBuilder.cc @ 1347

Last change on this file since 1347 was 1337, checked in by garnier, 14 years ago

tag geant4.9.4 beta 1 + modifs locales

File size: 3.7 KB
Line 
1//
2// ********************************************************************
3// * License and Disclaimer                                           *
4// *                                                                  *
5// * The  Geant4 software  is  copyright of the Copyright Holders  of *
6// * the Geant4 Collaboration.  It is provided  under  the terms  and *
7// * conditions of the Geant4 Software License,  included in the file *
8// * LICENSE and available at  http://cern.ch/geant4/license .  These *
9// * include a list of copyright holders.                             *
10// *                                                                  *
11// * Neither the authors of this software system, nor their employing *
12// * institutes,nor the agencies providing financial support for this *
13// * work  make  any representation or  warranty, express or implied, *
14// * regarding  this  software system or assume any liability for its *
15// * use.  Please see the license in the file  LICENSE  and URL above *
16// * for the full disclaimer and the limitation of liability.         *
17// *                                                                  *
18// * This  code  implementation is the result of  the  scientific and *
19// * technical work of the GEANT4 collaboration.                      *
20// * By using,  copying,  modifying or  distributing the software (or *
21// * any work based  on the software)  you  agree  to acknowledge its *
22// * use  in  resulting  scientific  publications,  and indicate your *
23// * acceptance of all terms of the Geant4 Software license.          *
24// ********************************************************************
25//
26// GEANT4 tag $Name: geant4-09-04-beta-01 $
27//
28//---------------------------------------------------------------------------
29//
30// ClassName:   G4MiscCHIPSBuilder
31//
32// Author: 2010, G.Folger
33//
34// created by modifying G4QInelasticCHIPSBuilder to apply only to MISC particles
35// -----------------------------------------------------------------------------
36#include "G4MiscCHIPSBuilder.hh"
37
38G4MiscCHIPSBuilder::G4MiscCHIPSBuilder(G4int ver):
39 verbose(ver), wasActivated(false)
40{
41  // pointer to the particle table
42  theParticleTable = G4ParticleTable::GetParticleTable();
43  theParticleIterator = theParticleTable->GetIterator();
44}
45
46G4MiscCHIPSBuilder::~G4MiscCHIPSBuilder()
47{
48  if(wasActivated) delete inelastic;
49}
50
51void G4MiscCHIPSBuilder::Build()
52{
53  if(wasActivated) return;
54
55  wasActivated = true;
56  theParticleIterator->reset();
57  inelastic = new G4QInelastic();
58
59  while( (*theParticleIterator)() )
60  {
61    G4ParticleDefinition* particle = theParticleIterator->value();
62    G4String pname = particle->GetParticleName();
63    if(pname == "kaon-" || pname == "kaon+" || pname == "kaon0S"  ||  pname == "kaon0L" ||
64       pname == "pi-"   || pname == "pi+"   || pname == "neutron" ||  pname == "proton" )
65    {
66      if(verbose>1)G4cout<<"** G4MiscCHIPSBuilder: "<<pname<<" already defined"<<G4endl;
67    }
68    else  if( pname == "lambda"       || pname == "sigma+"       || pname == "sigma0"       ||
69              pname == "sigma-"       || pname == "xi0" || pname == "xi-" || pname == "omega-" ||
70              pname == "anti_proton"  || pname == "anti_neutron" || pname == "anti_lambda"  ||
71              pname == "anti_sigma+"  || pname == "anti_sigma0"  || pname == "anti_sigma-"  ||
72              pname == "anti_xi0"     || pname == "anti_xi-"     || pname == "anti_omega-"  )
73    {
74      if(verbose>1)G4cout<< "__G4QInelCHIPSBuilder: "<< pname <<" is defined here"<<G4endl;
75      G4ProcessManager* pmanager = particle->GetProcessManager();
76      pmanager->AddDiscreteProcess(inelastic);
77      if(verbose>1) G4cout<<"###> G4MiscCHIPSBuilder: "<<inelastic->GetProcessName()
78                          <<" is added for "<<pname<<G4endl;
79    }
80  }
81}
Note: See TracBrowser for help on using the repository browser.