source: trunk/source/processes/biasing/src/G4SamplingPostStepAction.cc @ 1253

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

update geant4.9.3 tag

File size: 3.9 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//
27// $Id: G4SamplingPostStepAction.cc,v 1.3 2008/04/21 09:10:29 ahoward Exp $
28// GEANT4 tag $Name: geant4-09-03 $
29//
30// ----------------------------------------------------------------------
31// GEANT 4 class source file
32//
33// G4SamplingPostStepAction.cc
34//
35// ----------------------------------------------------------------------
36
37#include "G4SamplingPostStepAction.hh"
38#include "G4Track.hh"
39#include "G4ParticleChange.hh"
40#include "G4VImportanceSplitExaminer.hh"
41#include "G4Nsplit_Weight.hh"
42#include "G4VTrackTerminator.hh"
43#include <sstream>
44
45G4SamplingPostStepAction::
46G4SamplingPostStepAction(const G4VTrackTerminator &TrackTerminator)
47  : fTrackTerminator(TrackTerminator)
48{
49}
50
51G4SamplingPostStepAction::~G4SamplingPostStepAction()
52{
53}
54
55void G4SamplingPostStepAction::DoIt(const G4Track& aTrack, 
56                                          G4ParticleChange *aParticleChange,
57                                    const G4Nsplit_Weight &nw)
58{ 
59  // evaluate results from sampler
60  if (nw.fN>1)
61  {
62    // split track
63    Split(aTrack, nw, aParticleChange);
64  }
65  else if (nw.fN==1)
66  {
67    // don't split, but weight may be changed !
68    aParticleChange->ProposeWeight(nw.fW);
69  }
70  else if (nw.fN==0)
71  {
72    // kill track
73    fTrackTerminator.KillTrack();
74  }
75  else
76  {
77    // wrong answer
78    std::ostringstream os;
79    os << "Sampler returned nw = "
80       << nw
81       << "\n";
82    G4String m = os.str();
83   
84    G4Exception("G4SamplingPostStepAction::DoIt()",
85                "InvalidCondition", FatalException, m);
86  }
87}
88
89void G4SamplingPostStepAction::Split(const G4Track &aTrack,
90                                     const G4Nsplit_Weight &nw,
91                                           G4ParticleChange *aParticleChange)
92{
93  aParticleChange->ProposeWeight(nw.fW);
94  aParticleChange->SetNumberOfSecondaries(nw.fN-1);
95 
96  for (G4int i=1;i<nw.fN;i++)
97  {
98    G4Track *ptrack = new G4Track(aTrack);
99   
100    //    ptrack->SetCreatorProcess(aTrack.GetCreatorProcess());
101    ptrack->SetWeight(nw.fW);
102   
103    if (ptrack->GetMomentumDirection() != aTrack.GetMomentumDirection())
104    {
105      G4Exception("G4SamplingPostStepAction::Split()", "InvalidCondition",
106                  FatalException, "Track with same momentum !");
107    }
108    aParticleChange->AddSecondary(ptrack);
109  }
110  return;
111} 
Note: See TracBrowser for help on using the repository browser.