source: trunk/source/physics_lists/builders/src/G4ChargeExchangePhysics.cc @ 1315

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

update geant4-09-04-beta-cand-01 interfaces-V09-03-09 vis-V09-03-08

File size: 4.2 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// $Id: G4ChargeExchangePhysics.cc,v 1.2 2010/06/03 14:37:24 gunter Exp $
27// GEANT4 tag $Name: geant4-09-04-beta-cand-01 $
28//
29//---------------------------------------------------------------------------
30//
31// ClassName:   G4ChargeExchangePhysics
32//
33// Author: 19 November 2008 V. Ivanchenko
34//
35// Modified:
36//
37//----------------------------------------------------------------------------
38//
39
40#include "G4ChargeExchangePhysics.hh"
41
42#include "G4ChargeExchangeProcess.hh"
43#include "G4ChargeExchange.hh"
44#include "G4UElasticCrossSection.hh"
45
46#include "G4ParticleDefinition.hh"
47#include "G4ProcessManager.hh"
48
49#include "G4MesonConstructor.hh"
50#include "G4BaryonConstructor.hh"
51#include "G4Neutron.hh"
52
53G4ChargeExchangePhysics::G4ChargeExchangePhysics(G4int ver, G4bool glauber)
54  : G4VPhysicsConstructor("chargeExchange"), verbose(ver), glFlag(glauber),
55    wasActivated(false)
56{
57  if(verbose > 1) G4cout << "### ChargeExchangePhysics" << G4endl;
58  model = 0;
59}
60
61G4ChargeExchangePhysics::G4ChargeExchangePhysics(G4int ver)
62  : G4VPhysicsConstructor("chargeExchange"), verbose(ver), glFlag(false),
63    wasActivated(false)
64{
65  if(verbose > 1) G4cout << "### ChargeExchangePhysics" << G4endl;
66  model = 0;
67}
68
69G4ChargeExchangePhysics::~G4ChargeExchangePhysics()
70{
71  delete model;
72}
73
74void G4ChargeExchangePhysics::ConstructParticle()
75{
76// G4cout << "G4ChargeExchangePhysics::ConstructParticle" << G4endl;
77  G4MesonConstructor pMesonConstructor;
78  pMesonConstructor.ConstructParticle();
79
80  G4BaryonConstructor pBaryonConstructor;
81  pBaryonConstructor.ConstructParticle();
82}
83
84void G4ChargeExchangePhysics::ConstructProcess()
85{
86  if(wasActivated) return;
87  wasActivated = true;
88
89  model = new G4ChargeExchange();
90
91  if(verbose > 1) {
92    G4cout << "### ChargeExchangePhysics Construct Processes with the model <" 
93           << model->GetModelName() << ">" << G4endl;
94  }
95
96  theParticleIterator->reset();
97  while( (*theParticleIterator)() )
98  {
99    G4ParticleDefinition* particle = theParticleIterator->value();
100    G4String pname = particle->GetParticleName();
101    if(pname == "neutron"   || 
102       pname == "pi-"       || 
103       pname == "pi+"       || 
104       pname == "proton"
105       ) { 
106     
107      G4ProcessManager* pmanager = particle->GetProcessManager();
108      G4ChargeExchangeProcess* p = new G4ChargeExchangeProcess();
109      if(glFlag) p->AddDataSet(new G4UElasticCrossSection(particle));
110      p->RegisterMe(model);
111      pmanager->AddDiscreteProcess(p);
112
113      if(verbose > 1)
114        G4cout << "### ChargeExchangePhysics added for " 
115               << particle->GetParticleName() << G4endl;
116    }
117  }
118}
119
120
Note: See TracBrowser for help on using the repository browser.