114 lines
4.4 KiB
C++
114 lines
4.4 KiB
C++
//
|
|
// ********************************************************************
|
|
// * License and Disclaimer *
|
|
// * *
|
|
// * The Geant4 software is copyright of the Copyright Holders of *
|
|
// * the Geant4 Collaboration. It is provided under the terms and *
|
|
// * conditions of the Geant4 Software License, included in the file *
|
|
// * LICENSE and available at http://cern.ch/geant4/license . These *
|
|
// * include a list of copyright holders. *
|
|
// * *
|
|
// * Neither the authors of this software system, nor their employing *
|
|
// * institutes,nor the agencies providing financial support for this *
|
|
// * work make any representation or warranty, express or implied, *
|
|
// * regarding this software system or assume any liability for its *
|
|
// * use. Please see the license in the file LICENSE and URL above *
|
|
// * for the full disclaimer and the limitation of liability. *
|
|
// * *
|
|
// * This code implementation is the result of the scientific and *
|
|
// * technical work of the GEANT4 collaboration. *
|
|
// * By using, copying, modifying or distributing the software (or *
|
|
// * any work based on the software) you agree to acknowledge its *
|
|
// * use in resulting scientific publications, and indicate your *
|
|
// * acceptance of all terms of the Geant4 Software license. *
|
|
// ********************************************************************
|
|
//
|
|
//
|
|
// $Id: G4PWeightWindowConfigurator.cc,v 1.4.2.1 2006/06/29 21:12:06 gunter Exp $
|
|
// GEANT4 tag $Name: geant4-08-01 $
|
|
//
|
|
// ----------------------------------------------------------------------
|
|
// Class G4PWeightWindowConfigurator
|
|
//
|
|
// Author: Michael Dressel (Michael.Dressel@cern.ch)
|
|
// ----------------------------------------------------------------------
|
|
|
|
#include "G4PWeightWindowConfigurator.hh"
|
|
#include "G4ParallelWWnTransportProcess.hh"
|
|
#include "G4ParallelWeightWindowProcess.hh"
|
|
#include "G4WeightWindowAlgorithm.hh"
|
|
#include "G4ParallelWorld.hh"
|
|
#include "G4ParallelWeightWindowProcess.hh"
|
|
|
|
G4PWeightWindowConfigurator::
|
|
G4PWeightWindowConfigurator(const G4String &particlename,
|
|
G4ParallelWorld ¶llelWorld,
|
|
G4VWeightWindowStore &wwstore,
|
|
const G4VWeightWindowAlgorithm *wwAlg,
|
|
G4PlaceOfAction placeOfAction)
|
|
: fPlacer(particlename),
|
|
fPWorld(parallelWorld),
|
|
fDeleteWWalg( ( ! wwAlg) ),
|
|
fWWalgorithm(( (fDeleteWWalg) ? new G4WeightWindowAlgorithm(5,3,5)
|
|
: wwAlg)),
|
|
fExaminer(*fWWalgorithm, parallelWorld.GetParallelStepper(), wwstore),
|
|
fParallelWWProcess(0),
|
|
fPlaceOfAction(placeOfAction),
|
|
fTrackTerminator(0)
|
|
{
|
|
}
|
|
|
|
G4PWeightWindowConfigurator::~G4PWeightWindowConfigurator()
|
|
{
|
|
if (fParallelWWProcess)
|
|
{
|
|
fPlacer.RemoveProcess(fParallelWWProcess);
|
|
delete fParallelWWProcess;
|
|
fTrackTerminator = 0;
|
|
fParallelWWProcess = 0;
|
|
}
|
|
if (fDeleteWWalg)
|
|
{
|
|
delete fWWalgorithm;
|
|
}
|
|
}
|
|
|
|
void
|
|
G4PWeightWindowConfigurator::Configure(G4VSamplerConfigurator *preConf)
|
|
{
|
|
const G4VTrackTerminator *terminator = 0;
|
|
if (preConf)
|
|
{
|
|
terminator = preConf->GetTrackTerminator();
|
|
}
|
|
|
|
if (fPlaceOfAction == onBoundary)
|
|
{
|
|
G4ParallelWWnTransportProcess *parallelWWnTransportProcess =
|
|
new G4ParallelWWnTransportProcess(fExaminer,
|
|
fPWorld.GetGeoDriver(),
|
|
fPWorld.GetParallelStepper(),
|
|
terminator);
|
|
fTrackTerminator = parallelWWnTransportProcess;
|
|
fParallelWWProcess = parallelWWnTransportProcess;
|
|
}
|
|
else
|
|
{
|
|
G4ParallelWeightWindowProcess *parallelWeightWindowProcess =
|
|
new G4ParallelWeightWindowProcess(fExaminer,
|
|
fPWorld.GetParallelStepper(),
|
|
terminator,
|
|
fPlaceOfAction);
|
|
fTrackTerminator = parallelWeightWindowProcess;
|
|
fParallelWWProcess = parallelWeightWindowProcess;
|
|
}
|
|
|
|
fPlacer.AddProcessAsSecondDoIt(fParallelWWProcess);
|
|
}
|
|
|
|
const G4VTrackTerminator *
|
|
G4PWeightWindowConfigurator::GetTrackTerminator() const
|
|
{
|
|
return fTrackTerminator;
|
|
}
|