Import Geant4 5.0.0 source tree
This commit is contained in:
@@ -21,8 +21,8 @@
|
||||
// ********************************************************************
|
||||
//
|
||||
//
|
||||
// $Id: G4ImportancePostStepDoIt.hh,v 1.4 2002/05/31 08:06:34 dressel Exp $
|
||||
// GEANT4 tag $Name: geant4-04-01 $
|
||||
// $Id: G4ImportancePostStepDoIt.hh,v 1.6 2002/10/16 16:26:58 dressel Exp $
|
||||
// GEANT4 tag $Name: geant4-05-00 $
|
||||
//
|
||||
// ----------------------------------------------------------------------
|
||||
// Class G4ImportancePostStepDoIt
|
||||
@@ -43,13 +43,16 @@ class G4ParticleChange;
|
||||
class G4Track;
|
||||
class G4Step;
|
||||
class G4Nsplit_Weight;
|
||||
class G4VTrackTerminator;
|
||||
|
||||
|
||||
class G4ImportancePostStepDoIt
|
||||
{
|
||||
|
||||
public: // with description
|
||||
|
||||
G4ImportancePostStepDoIt();
|
||||
explicit G4ImportancePostStepDoIt(const G4VTrackTerminator &
|
||||
TrackTerminator);
|
||||
// simply construct
|
||||
|
||||
~G4ImportancePostStepDoIt();
|
||||
@@ -57,15 +60,18 @@ public: // with description
|
||||
|
||||
void DoIt(const G4Track& aTrack,
|
||||
G4ParticleChange *aParticleChange,
|
||||
const G4Nsplit_Weight nw);
|
||||
const G4Nsplit_Weight &nw);
|
||||
// Do the PostStepDoIt part common to importance sampling in the
|
||||
// "mass" and "parallel" geometry.
|
||||
|
||||
private:
|
||||
|
||||
void Split(const G4Track &aTrack,
|
||||
const G4Nsplit_Weight &nw,
|
||||
G4ParticleChange *aParticleChange);
|
||||
|
||||
const G4VTrackTerminator &fTrackTerminator;
|
||||
|
||||
|
||||
};
|
||||
|
||||
#endif
|
||||
|
||||
+27
-45
@@ -21,69 +21,51 @@
|
||||
// ********************************************************************
|
||||
//
|
||||
//
|
||||
// $Id: G4MassImportanceSampler.hh,v 1.1 2002/05/31 10:16:01 dressel Exp $
|
||||
// GEANT4 tag $Name: geant4-04-01 $
|
||||
// $Id: G4MImportanceConfigurator.hh,v 1.3 2002/10/22 13:25:55 dressel Exp $
|
||||
// GEANT4 tag $Name: geant4-05-00 $
|
||||
//
|
||||
// ----------------------------------------------------------------------
|
||||
// Class G4MassImportanceSampler
|
||||
// Class G4MImportanceConfigurator
|
||||
//
|
||||
// Class description:
|
||||
//
|
||||
// A user should use this class to set up importance sampling
|
||||
// in the "mass" geometry.
|
||||
// The user must create an object of this kind and initialise it.
|
||||
|
||||
// This class builds and places the G4ImportanceProcess.
|
||||
// If the object is deleted the process is removed from the
|
||||
// process list.
|
||||
|
||||
// Author: Michael Dressel (Michael.Dressel@cern.ch)
|
||||
// ----------------------------------------------------------------------
|
||||
#ifndef G4MassImportanceSampler_hh
|
||||
#define G4MassImportanceSampler_hh G4MassImportanceSampler_hh
|
||||
|
||||
#ifndef G4MImportanceConfigurator_hh
|
||||
#define G4MImportanceConfigurator_hh G4MImportanceConfigurator_hh
|
||||
|
||||
#include "globals.hh"
|
||||
#include "G4VSampler.hh"
|
||||
#include "G4MassImportanceProcess.hh"
|
||||
#include "G4ProcessPlacer.hh"
|
||||
#include "G4VSamplerConfigurator.hh"
|
||||
|
||||
class G4VIStore;
|
||||
class G4MassImportanceProcess;
|
||||
class G4VImportanceAlgorithm;
|
||||
class G4VProcess;
|
||||
|
||||
class G4MassImportanceSampler : public G4VSampler
|
||||
{
|
||||
class G4MImportanceConfigurator : public G4VSamplerConfigurator{
|
||||
public:
|
||||
G4MImportanceConfigurator(const G4String &particlename,
|
||||
G4VIStore &istore,
|
||||
const G4VImportanceAlgorithm *ialg);
|
||||
|
||||
public: // with description
|
||||
|
||||
G4MassImportanceSampler(G4VIStore &aIstore,
|
||||
const G4String &particlename,
|
||||
const G4VImportanceAlgorithm *algorithm = 0);
|
||||
// if *algorithm = 0: use the G4ImportanceAlgorithm
|
||||
// else: use a customised importance algorithm derived from
|
||||
// G4VImportanceAlgorithm
|
||||
|
||||
~G4MassImportanceSampler();
|
||||
// delete G4MassImportanceProcess and G4VImportanceAlgorithm
|
||||
// if constructed by this object
|
||||
|
||||
G4MassImportanceProcess *CreateMassImportanceProcess();
|
||||
// create the mass importance process
|
||||
// don't use it if you use Initialize()
|
||||
|
||||
void Initialize();
|
||||
// the G4MassImportanceSampler has to be initialised after
|
||||
// the initialisation of the G4RunManager !
|
||||
|
||||
|
||||
private:
|
||||
|
||||
G4MassImportanceSampler(const G4MassImportanceSampler &);
|
||||
G4MassImportanceSampler &operator=(const G4MassImportanceSampler &);
|
||||
virtual ~G4MImportanceConfigurator();
|
||||
virtual void Configure(G4VSamplerConfigurator *preConf);
|
||||
virtual const G4VTrackTerminator *GetTrackTerminator() const;
|
||||
|
||||
private:
|
||||
G4MImportanceConfigurator(const G4MImportanceConfigurator &);
|
||||
G4MImportanceConfigurator &
|
||||
operator=(const G4MImportanceConfigurator &);
|
||||
|
||||
G4ProcessPlacer fPlacer;
|
||||
G4VIStore &fIStore;
|
||||
G4String fParticleName;
|
||||
G4bool fDeleteIalg;
|
||||
const G4VImportanceAlgorithm *fIalgorithm;
|
||||
G4MassImportanceProcess *fMassImportanceProcess;
|
||||
G4bool fCreatedAlgorithm;
|
||||
const G4VImportanceAlgorithm *fAlgorithm;
|
||||
};
|
||||
|
||||
|
||||
#endif
|
||||
+28
-36
@@ -21,58 +21,50 @@
|
||||
// ********************************************************************
|
||||
//
|
||||
//
|
||||
// $Id: G4MassScoreSampler.hh,v 1.1 2002/05/31 10:16:01 dressel Exp $
|
||||
// GEANT4 tag $Name: geant4-04-01 $
|
||||
// $Id: G4MScoreConfigurator.hh,v 1.3 2002/10/22 13:25:55 dressel Exp $
|
||||
// GEANT4 tag $Name: geant4-05-00 $
|
||||
//
|
||||
// ----------------------------------------------------------------------
|
||||
// Class G4MassScoreSampler
|
||||
// Class G4MScoreConfigurator
|
||||
//
|
||||
// Class description:
|
||||
//
|
||||
// A user should use this class to set up scoring in the "mass" geometry.
|
||||
// The user must create an object of this kind and initialise it.
|
||||
// This class builds and places the G4MScoreProcess.
|
||||
// If the object is deleted the process is removed from the
|
||||
// process list.
|
||||
|
||||
// Author: Michael Dressel (Michael.Dressel@cern.ch)
|
||||
// ----------------------------------------------------------------------
|
||||
#ifndef G4MassScoreSampler_hh
|
||||
#define G4MassScoreSampler_hh G4MassScoreSampler_hh
|
||||
|
||||
#ifndef G4MScoreConfigurator_hh
|
||||
#define G4MScoreConfigurator_hh G4MScoreConfigurator_hh
|
||||
|
||||
#include "globals.hh"
|
||||
#include "G4VSampler.hh"
|
||||
#include "G4MScoreProcess.hh"
|
||||
#include "G4ProcessPlacer.hh"
|
||||
|
||||
class G4VProcess;
|
||||
class G4VPScorer;
|
||||
class G4MScoreProcess;
|
||||
#include "G4VSamplerConfigurator.hh"
|
||||
|
||||
class G4MassScoreSampler : public G4VSampler
|
||||
{
|
||||
class G4VScorer;
|
||||
class G4VTrackTerminator;
|
||||
|
||||
public: // with description
|
||||
|
||||
G4MassScoreSampler(G4VPScorer &ascorer, const G4String &particlename);
|
||||
// a G4MassScoreSampler for a particle type
|
||||
|
||||
~G4MassScoreSampler();
|
||||
// delete G4MScoreProcess if constructed
|
||||
|
||||
G4MScoreProcess *CreateMassScoreProcess();
|
||||
// create the mass score process
|
||||
// don't use it if you use Initialize()
|
||||
|
||||
void Initialize();
|
||||
// the G4MassScoreSampler has to be initialised after
|
||||
// the initialisation of the G4RunManager !
|
||||
class G4MScoreConfigurator : public G4VSamplerConfigurator{
|
||||
public:
|
||||
G4MScoreConfigurator(const G4String &particlename,
|
||||
G4VScorer &scorer);
|
||||
virtual ~G4MScoreConfigurator();
|
||||
|
||||
virtual void Configure(G4VSamplerConfigurator *preConf);
|
||||
virtual const G4VTrackTerminator *GetTrackTerminator() const;
|
||||
|
||||
|
||||
private:
|
||||
G4MScoreConfigurator(const G4MScoreConfigurator&);
|
||||
G4MScoreConfigurator &operator=(const G4MScoreConfigurator&);
|
||||
|
||||
G4MassScoreSampler(const G4MassScoreSampler &);
|
||||
G4MassScoreSampler &operator=(const G4MassScoreSampler &);
|
||||
|
||||
private:
|
||||
|
||||
G4VPScorer &fScorer;
|
||||
G4String fParticleName;
|
||||
G4ProcessPlacer fPlacer;
|
||||
G4VScorer &fScorer;
|
||||
G4MScoreProcess *fMScoreProcess;
|
||||
};
|
||||
|
||||
|
||||
#endif
|
||||
@@ -21,8 +21,8 @@
|
||||
// ********************************************************************
|
||||
//
|
||||
//
|
||||
// $Id: G4MScoreProcess.hh,v 1.3 2002/04/10 13:14:16 dressel Exp $
|
||||
// GEANT4 tag $Name: geant4-04-01 $
|
||||
// $Id: G4MScoreProcess.hh,v 1.7 2002/10/22 13:25:55 dressel Exp $
|
||||
// GEANT4 tag $Name: geant4-05-00 $
|
||||
//
|
||||
// ----------------------------------------------------------------------
|
||||
// Class G4MScoreProcess
|
||||
@@ -31,7 +31,7 @@
|
||||
//
|
||||
// Used internally by scoring in the "mass" world.
|
||||
// This is a forced post step process messaging a "scorer"
|
||||
// derived from G4VPScorer.
|
||||
// derived from G4VScorer.
|
||||
|
||||
// Author: Michael Dressel (Michael.Dressel@cern.ch)
|
||||
// ----------------------------------------------------------------------
|
||||
@@ -39,16 +39,18 @@
|
||||
#define G4MScoreProcess_hh G4MScoreProcess_hh
|
||||
|
||||
#include "G4VProcess.hh"
|
||||
#include "G4VTrackTerminator.hh"
|
||||
|
||||
class G4VPScorer;
|
||||
class G4VScorer;
|
||||
|
||||
class G4MScoreProcess : public G4VProcess, public G4VTrackTerminator
|
||||
|
||||
class G4MScoreProcess : public G4VProcess
|
||||
{
|
||||
|
||||
public: // with description
|
||||
|
||||
G4MScoreProcess(G4VPScorer &aScorer,
|
||||
const G4String &aName = "MScoreProcess");
|
||||
explicit G4MScoreProcess(G4VScorer &aScorer,
|
||||
const G4String &aName = "MScoreProcess");
|
||||
// take reference to scorer and coppy particle name and
|
||||
// create a G4ParticleChange
|
||||
|
||||
@@ -62,37 +64,44 @@ public: // with description
|
||||
// make processed being forced
|
||||
|
||||
virtual G4VParticleChange * PostStepDoIt(const G4Track&, const G4Step&);
|
||||
// message "scorer" with G4Step and a G4PStep from the "mass"
|
||||
// message "scorer" with G4Step and a G4GeometryCellStep from the "mass"
|
||||
// geometry
|
||||
|
||||
virtual void KillTrack() const;
|
||||
|
||||
// to be called by the importance process if the track should
|
||||
// be killed after scoring
|
||||
virtual const G4String &GetName() const ;
|
||||
|
||||
public: // without description
|
||||
|
||||
// no operation in AtRestDoIt and AlongStepDoIt
|
||||
|
||||
G4double
|
||||
virtual G4double
|
||||
AlongStepGetPhysicalInteractionLength(const G4Track&,
|
||||
G4double ,
|
||||
G4double ,
|
||||
G4double& ,
|
||||
G4GPILSelection*) {return -1.0;}
|
||||
G4GPILSelection*);
|
||||
|
||||
G4double
|
||||
virtual G4double
|
||||
AtRestGetPhysicalInteractionLength(const G4Track&,
|
||||
G4ForceCondition*) {return -1.0;}
|
||||
G4ForceCondition*);
|
||||
|
||||
G4VParticleChange* AtRestDoIt(const G4Track&,
|
||||
const G4Step&) {return 0;}
|
||||
G4VParticleChange* AlongStepDoIt(const G4Track&,
|
||||
const G4Step&) {return 0;}
|
||||
virtual G4VParticleChange* AtRestDoIt(const G4Track&,
|
||||
const G4Step&);
|
||||
virtual G4VParticleChange* AlongStepDoIt(const G4Track&,
|
||||
const G4Step&);
|
||||
|
||||
private:
|
||||
|
||||
G4MScoreProcess(const G4MScoreProcess &);
|
||||
G4MScoreProcess &operator=(const G4MScoreProcess &);
|
||||
|
||||
|
||||
private:
|
||||
|
||||
G4VPScorer &fScorer;
|
||||
G4VScorer &fScorer;
|
||||
mutable G4bool fKillTrack;
|
||||
};
|
||||
|
||||
#endif
|
||||
|
||||
+16
-32
@@ -21,56 +21,40 @@
|
||||
// ********************************************************************
|
||||
//
|
||||
//
|
||||
// $Id: G4PScorer.hh,v 1.5 2002/04/10 13:14:16 dressel Exp $
|
||||
// GEANT4 tag $Name: geant4-04-01 $
|
||||
// $Id: G4MassGCellFinder.hh,v 1.1 2002/10/16 16:27:41 dressel Exp $
|
||||
// GEANT4 tag $Name: geant4-05-00 $
|
||||
//
|
||||
// ----------------------------------------------------------------------
|
||||
// Class G4PScorer
|
||||
// Class G4ParallelGCellFinder
|
||||
//
|
||||
// Class description:
|
||||
//
|
||||
// A scorer for standard tallies. Under development.
|
||||
// See also G4VPScorer.
|
||||
// It scores using informations form G4Step and G4PStep.
|
||||
// The tallies are contained and related with "cells"
|
||||
// in the container G4PMapPtkTallys (see G4PMapPtkTallys.hh)
|
||||
// Find a G4GeometryCell in the mass geometry.
|
||||
//
|
||||
|
||||
// Author: Michael Dressel (Michael.Dressel@cern.ch)
|
||||
// ----------------------------------------------------------------------
|
||||
#ifndef G4Pscorer_hh
|
||||
#define G4Pscorer_hh G4Pscorer_hh
|
||||
|
||||
#include "g4std/iostream"
|
||||
#ifndef G4MassGCellFinder_hh
|
||||
#define G4MassGCellFinder_hh G4MassGCellFinder_hh
|
||||
|
||||
#include "G4VPScorer.hh"
|
||||
#include "G4PMapPtkTallys.hh"
|
||||
#include "globals.hh"
|
||||
|
||||
class G4Step;
|
||||
class G4PStep;
|
||||
#include "G4VGCellFinder.hh"
|
||||
|
||||
class G4PScorer : public G4VPScorer
|
||||
class G4MassGCellFinder : public G4VGCellFinder
|
||||
{
|
||||
|
||||
public: // with description
|
||||
|
||||
G4PScorer();
|
||||
// simple construction
|
||||
G4MassGCellFinder();
|
||||
virtual ~G4MassGCellFinder();
|
||||
|
||||
~G4PScorer();
|
||||
// simple destruction
|
||||
virtual G4GeometryCell
|
||||
GetPreGeometryCell(const G4Step &aStep) const;
|
||||
virtual G4GeometryCell
|
||||
GetPostGeometryCell(const G4Step &aStep) const;
|
||||
|
||||
void Score(const G4Step &aStep, const G4PStep &aPStep);
|
||||
// perform scoring for the G4Step and G4PStep
|
||||
|
||||
const G4PMapPtkTallys &GetMapPtkTallys() const {return fPtkTallys;}
|
||||
// get a reference to the G4PMapPtkTallys containing
|
||||
// the tallies
|
||||
|
||||
private:
|
||||
|
||||
G4PMapPtkTallys fPtkTallys;
|
||||
};
|
||||
|
||||
G4std::ostream& operator<<(G4std::ostream &out, const G4PScorer &ps);
|
||||
|
||||
#endif
|
||||
@@ -0,0 +1,87 @@
|
||||
//
|
||||
// ********************************************************************
|
||||
// * DISCLAIMER *
|
||||
// * *
|
||||
// * The following disclaimer summarizes all the specific disclaimers *
|
||||
// * of contributors to this software. The specific disclaimers,which *
|
||||
// * govern, are listed with their locations in: *
|
||||
// * http://cern.ch/geant4/license *
|
||||
// * *
|
||||
// * 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. *
|
||||
// * *
|
||||
// * This code implementation is the intellectual property of the *
|
||||
// * GEANT4 collaboration. *
|
||||
// * By copying, distributing or modifying the Program (or any work *
|
||||
// * based on the Program) you indicate your acceptance of this *
|
||||
// * statement, and all its terms. *
|
||||
// ********************************************************************
|
||||
//
|
||||
//
|
||||
// $Id: G4MassGeometrySampler.hh,v 1.3 2002/10/22 13:25:55 dressel Exp $
|
||||
// GEANT4 tag $Name: geant4-05-00 $
|
||||
//
|
||||
// ----------------------------------------------------------------------
|
||||
// Class G4MassGeometrySampler
|
||||
//
|
||||
// Class description:
|
||||
// This class inherits from G4VSampler. It is used for scoring and
|
||||
// importance smpling in the tracking (mass) geometry.
|
||||
// See also the description in G4VSampler.hh.
|
||||
//
|
||||
// Author: Michael Dressel (Michael.Dressel@cern.ch)
|
||||
// ----------------------------------------------------------------------
|
||||
#ifndef G4MassGeometrySampler_hh
|
||||
#define G4MassGeometrySampler_hh G4MassGeometrySampler_hh
|
||||
|
||||
#include "G4VSampler.hh"
|
||||
#include "globals.hh"
|
||||
#include "G4VSamplerConfigurator.hh"
|
||||
|
||||
class G4MImportanceConfigurator;
|
||||
class G4MScoreConfigurator;
|
||||
class G4WeightCutOffConfigurator;
|
||||
class G4VGCellFinder;
|
||||
|
||||
class G4MassGeometrySampler : public G4VSampler{
|
||||
|
||||
public:
|
||||
|
||||
explicit G4MassGeometrySampler(const G4String &particlename);
|
||||
virtual ~G4MassGeometrySampler();
|
||||
|
||||
virtual void PrepareScoring(G4VScorer *Scorer);
|
||||
virtual void PrepareImportanceSampling(G4VIStore *istore,
|
||||
const G4VImportanceAlgorithm
|
||||
*ialg);
|
||||
virtual void PrepareWeightRoulett(G4double wsurvive,
|
||||
G4double wlimit,
|
||||
G4double isource);
|
||||
|
||||
virtual void Configure();
|
||||
|
||||
virtual void ClearSampling();
|
||||
virtual G4bool IsConfigured() const;
|
||||
|
||||
private:
|
||||
|
||||
G4MassGeometrySampler(const G4MassGeometrySampler &);
|
||||
G4MassGeometrySampler &
|
||||
operator=(const G4MassGeometrySampler &);
|
||||
|
||||
private:
|
||||
G4String fParticleName;
|
||||
G4MImportanceConfigurator *fMImportanceConfigurator;
|
||||
G4MScoreConfigurator *fMScoreConfigurator;
|
||||
G4VGCellFinder *fGCellFinder;
|
||||
G4WeightCutOffConfigurator *fWeightCutOffConfigurator;
|
||||
G4VIStore *fIStore;
|
||||
G4bool fIsConfigured;
|
||||
G4Configurators fConfigurators;
|
||||
};
|
||||
|
||||
#endif
|
||||
|
||||
@@ -21,8 +21,8 @@
|
||||
// ********************************************************************
|
||||
//
|
||||
//
|
||||
// $Id: G4MassImportanceProcess.hh,v 1.3 2002/04/10 13:14:16 dressel Exp $
|
||||
// GEANT4 tag $Name: geant4-04-01 $
|
||||
// $Id: G4MassImportanceProcess.hh,v 1.6 2002/10/16 16:26:58 dressel Exp $
|
||||
// GEANT4 tag $Name: geant4-05-00 $
|
||||
//
|
||||
// ----------------------------------------------------------------------
|
||||
// Class G4MassImportanceProcess
|
||||
@@ -41,22 +41,24 @@
|
||||
|
||||
#include "G4VProcess.hh"
|
||||
#include "G4ImportancePostStepDoIt.hh"
|
||||
#include "G4VTrackTerminator.hh"
|
||||
#include "G4ImportanceFinder.hh"
|
||||
|
||||
class G4VImportanceAlgorithm;
|
||||
class G4ImportanceFinder;
|
||||
class G4VIStore;
|
||||
|
||||
class G4MassImportanceProcess : public G4VProcess
|
||||
class G4MassImportanceProcess : public G4VProcess, public G4VTrackTerminator
|
||||
{
|
||||
|
||||
public: // with description
|
||||
|
||||
G4MassImportanceProcess(const G4VImportanceAlgorithm &aImportanceAlgorithm,
|
||||
const G4VIStore &aIstore,
|
||||
const G4VTrackTerminator *TrackTerminator,
|
||||
const G4String &aName = "MassImportanceProcess");
|
||||
// creates a G4ParticleChange
|
||||
|
||||
~G4MassImportanceProcess();
|
||||
virtual ~G4MassImportanceProcess();
|
||||
// delete the G4ParticleChange
|
||||
|
||||
virtual G4double
|
||||
@@ -67,33 +69,45 @@ public: // with description
|
||||
virtual G4VParticleChange *PostStepDoIt(const G4Track&, const G4Step&);
|
||||
// manage the importance sampling in the "mass" geometry
|
||||
|
||||
virtual void KillTrack() const;
|
||||
// used in case no scoring process follows that does the killing
|
||||
|
||||
virtual const G4String &GetName() const;
|
||||
|
||||
|
||||
public: // without description
|
||||
|
||||
// no operation in AtRestDoIt and AlongStepDoIt
|
||||
|
||||
G4double AlongStepGetPhysicalInteractionLength(const G4Track&,
|
||||
virtual G4double
|
||||
AlongStepGetPhysicalInteractionLength(const G4Track&,
|
||||
G4double ,
|
||||
G4double ,
|
||||
G4double& ,
|
||||
G4GPILSelection*) {return -1.0;}
|
||||
G4GPILSelection*);
|
||||
virtual G4double
|
||||
AtRestGetPhysicalInteractionLength(const G4Track& ,
|
||||
G4ForceCondition*);
|
||||
|
||||
G4double AtRestGetPhysicalInteractionLength(const G4Track& ,
|
||||
G4ForceCondition*) {return -1.0;}
|
||||
|
||||
G4VParticleChange* AtRestDoIt(const G4Track&, const G4Step&) {return 0;}
|
||||
G4VParticleChange* AlongStepDoIt(const G4Track&, const G4Step&) {return 0;}
|
||||
virtual G4VParticleChange*
|
||||
AtRestDoIt(const G4Track&, const G4Step&);
|
||||
|
||||
|
||||
virtual G4VParticleChange*
|
||||
AlongStepDoIt(const G4Track&, const G4Step&);
|
||||
|
||||
private:
|
||||
|
||||
|
||||
G4MassImportanceProcess(const G4MassImportanceProcess &);
|
||||
G4MassImportanceProcess &operator=(const G4MassImportanceProcess &);
|
||||
|
||||
|
||||
private:
|
||||
|
||||
G4ParticleChange *fParticleChange;
|
||||
G4ImportancePostStepDoIt fImportancePostStepDoIt;
|
||||
const G4VTrackTerminator *fTrackTerminator;
|
||||
const G4VImportanceAlgorithm &fImportanceAlgorithm;
|
||||
G4ImportanceFinder *fImportanceFinder;
|
||||
G4ImportanceFinder fImportanceFinder;
|
||||
G4ImportancePostStepDoIt fImportancePostStepDoIt;
|
||||
};
|
||||
|
||||
#endif
|
||||
|
||||
@@ -1,95 +0,0 @@
|
||||
//
|
||||
// ********************************************************************
|
||||
// * DISCLAIMER *
|
||||
// * *
|
||||
// * The following disclaimer summarizes all the specific disclaimers *
|
||||
// * of contributors to this software. The specific disclaimers,which *
|
||||
// * govern, are listed with their locations in: *
|
||||
// * http://cern.ch/geant4/license *
|
||||
// * *
|
||||
// * 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. *
|
||||
// * *
|
||||
// * This code implementation is the intellectual property of the *
|
||||
// * GEANT4 collaboration. *
|
||||
// * By copying, distributing or modifying the Program (or any work *
|
||||
// * based on the Program) you indicate your acceptance of this *
|
||||
// * statement, and all its terms. *
|
||||
// ********************************************************************
|
||||
//
|
||||
//
|
||||
// $Id: G4PIScorer.hh,v 1.5 2002/04/10 13:14:16 dressel Exp $
|
||||
// GEANT4 tag $Name: geant4-04-01 $
|
||||
//
|
||||
// ----------------------------------------------------------------------
|
||||
// Class G4PIScorer
|
||||
//
|
||||
// Class description:
|
||||
//
|
||||
// A scorer delegating the scoring to G4PScorer. It performs
|
||||
// a check for consistency between the importance value
|
||||
// assigned to a post G4PTouchableKey and the weight of a track.
|
||||
// The relation should be importance value * weight = 1.
|
||||
// CAUTION: This holds only in well defined situations:
|
||||
// A track starts in a "cell" with importance 1 and has a weight of 1.
|
||||
// The particle can not be produced by other not importance sampled
|
||||
// particles.
|
||||
|
||||
// Author: Michael Dressel (Michael.Dressel@cern.ch)
|
||||
// ----------------------------------------------------------------------
|
||||
#ifndef G4PIScorer_hh
|
||||
#define G4PIScorer_hh G4PIScorer_hh
|
||||
|
||||
#include "g4std/iostream"
|
||||
|
||||
#include "G4VPScorer.hh"
|
||||
#include "G4PMapPtkTallys.hh"
|
||||
#include "G4PScorer.hh"
|
||||
|
||||
class G4Step;
|
||||
class G4PStep;
|
||||
class G4VIStore;
|
||||
|
||||
class G4PIScorer : public G4VPScorer
|
||||
{
|
||||
|
||||
public: // with description
|
||||
|
||||
G4PIScorer(const G4VIStore &IStore);
|
||||
// simple construction
|
||||
|
||||
~G4PIScorer();
|
||||
// simple destruction
|
||||
|
||||
void Score(const G4Step &aStep, const G4PStep &aPStep);
|
||||
// perform scoring for the G4Step and G4PStep
|
||||
|
||||
const G4PMapPtkTallys &GetMapPtkTallys() const
|
||||
{return fPScorer.GetMapPtkTallys();}
|
||||
// get a reference to the G4PMapPtkTallys containing
|
||||
// the tallies
|
||||
|
||||
G4bool CorrectWeight() const {return fCorrectWeight;}
|
||||
// returns false if the weight was not correct
|
||||
// a user might want to get this information
|
||||
// to mark the event a incorrect weight occurred
|
||||
|
||||
void ResetCorrectWeight() {fCorrectWeight = true;}
|
||||
// reset fCorrectWeight
|
||||
// the user has to reset the flag fCorrectWeight
|
||||
// if he wants to use CorrectWeight()
|
||||
|
||||
private:
|
||||
|
||||
const G4VIStore &fIStore;
|
||||
G4PScorer fPScorer;
|
||||
G4int fNerr;
|
||||
G4bool fCorrectWeight;
|
||||
};
|
||||
|
||||
G4std::ostream& operator<<(G4std::ostream &out, const G4PIScorer &ps);
|
||||
|
||||
#endif
|
||||
+34
-44
@@ -21,65 +21,55 @@
|
||||
// ********************************************************************
|
||||
//
|
||||
//
|
||||
// $Id: G4MassImportanceScoreSampler.hh,v 1.1 2002/05/31 10:16:01 dressel Exp $
|
||||
// GEANT4 tag $Name: geant4-04-01 $
|
||||
// $Id: G4PImportanceConfigurator.hh,v 1.3 2002/10/22 13:25:56 dressel Exp $
|
||||
// GEANT4 tag $Name: geant4-05-00 $
|
||||
//
|
||||
// ----------------------------------------------------------------------
|
||||
// Class G4MassImportanceScoreSampler
|
||||
// Class G4PImportanceConfigurator
|
||||
//
|
||||
// Class description:
|
||||
//
|
||||
// A user should use this class to set up importance sampling and scoring
|
||||
// in the "mass" geometry.
|
||||
// The user must create an object of this kind and initialise it.
|
||||
|
||||
// This class builds and places the G4PImportanceProcess
|
||||
// If the object is deleted the process is removed from the
|
||||
// process list.
|
||||
|
||||
// Author: Michael Dressel (Michael.Dressel@cern.ch)
|
||||
// ----------------------------------------------------------------------
|
||||
#ifndef G4MassImportanceScoreSampler_hh
|
||||
#define G4MassImportanceScoreSampler_hh G4MassImportanceScoreSampler_hh
|
||||
|
||||
#ifndef G4PImportanceConfigurator_hh
|
||||
#define G4PImportanceConfigurator_hh G4PImportanceConfigurator_hh
|
||||
|
||||
#include "G4VSamplerConfigurator.hh"
|
||||
|
||||
#include "globals.hh"
|
||||
#include "G4VSampler.hh"
|
||||
#include "G4ImportanceSplitExaminer.hh"
|
||||
#include "G4ParallelImportanceProcess.hh"
|
||||
#include "G4ProcessPlacer.hh"
|
||||
|
||||
class G4VIStore;
|
||||
class G4VPScorer;
|
||||
class G4ParallelWorld;
|
||||
class G4VImportanceAlgorithm;
|
||||
class G4MassImportanceSampler;
|
||||
class G4MassScoreSampler;
|
||||
|
||||
class G4MassImportanceScoreSampler : public G4VSampler
|
||||
{
|
||||
|
||||
public: // with description
|
||||
|
||||
G4MassImportanceScoreSampler(G4VIStore &aIstore,
|
||||
G4VPScorer &ascorer,
|
||||
const G4String &particlename,
|
||||
const G4VImportanceAlgorithm
|
||||
*algorithm = 0);
|
||||
// if *algorithm = 0: use the G4ImportanceAlgorithm
|
||||
// else : use a customised importance algorithm derived from
|
||||
// G4VImportanceAlgorithm
|
||||
class G4PImportanceConfigurator : public G4VSamplerConfigurator {
|
||||
public:
|
||||
G4PImportanceConfigurator(const G4String &particlename,
|
||||
G4ParallelWorld ¶llelWorld,
|
||||
G4VIStore &istore,
|
||||
const G4VImportanceAlgorithm *ialg);
|
||||
virtual ~G4PImportanceConfigurator();
|
||||
virtual void Configure(G4VSamplerConfigurator *preConf);
|
||||
virtual const G4VTrackTerminator *GetTrackTerminator() const;
|
||||
|
||||
|
||||
~G4MassImportanceScoreSampler();
|
||||
// delete G4MassScoreSampler and G4MassImportanceSampler if created
|
||||
|
||||
void Initialize();
|
||||
// the G4MassImportanceScoreSampler has to be initialised after
|
||||
// the initialisation of the G4RunManager !
|
||||
|
||||
private:
|
||||
|
||||
G4MassImportanceScoreSampler(const G4MassImportanceScoreSampler &);
|
||||
G4MassImportanceScoreSampler &
|
||||
operator=(const G4MassImportanceScoreSampler &);
|
||||
|
||||
private:
|
||||
|
||||
G4MassImportanceSampler *fMassImportanceSampler;
|
||||
G4MassScoreSampler *fMassScoreSampler;
|
||||
G4PImportanceConfigurator(const G4PImportanceConfigurator &);
|
||||
G4PImportanceConfigurator &
|
||||
operator=(const G4PImportanceConfigurator &);
|
||||
G4ProcessPlacer fPlacer;
|
||||
G4ParallelWorld &fPWorld;
|
||||
G4bool fDeleteIalg;
|
||||
const G4VImportanceAlgorithm *fIalgorithm;
|
||||
G4ImportanceSplitExaminer fExaminer;
|
||||
G4ParallelImportanceProcess *fParallelImportanceProcess;
|
||||
};
|
||||
|
||||
|
||||
#endif
|
||||
@@ -1,99 +0,0 @@
|
||||
//
|
||||
// ********************************************************************
|
||||
// * DISCLAIMER *
|
||||
// * *
|
||||
// * The following disclaimer summarizes all the specific disclaimers *
|
||||
// * of contributors to this software. The specific disclaimers,which *
|
||||
// * govern, are listed with their locations in: *
|
||||
// * http://cern.ch/geant4/license *
|
||||
// * *
|
||||
// * 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. *
|
||||
// * *
|
||||
// * This code implementation is the intellectual property of the *
|
||||
// * GEANT4 collaboration. *
|
||||
// * By copying, distributing or modifying the Program (or any work *
|
||||
// * based on the Program) you indicate your acceptance of this *
|
||||
// * statement, and all its terms. *
|
||||
// ********************************************************************
|
||||
//
|
||||
//
|
||||
// $Id: G4PImportanceWWindowScoreSampler.hh,v 1.1 2002/05/31 10:16:01 dressel Exp $
|
||||
// GEANT4 tag $Name: geant4-04-01 $
|
||||
//
|
||||
// ----------------------------------------------------------------------
|
||||
// Class G4PImportanceWWindowScoreSampler
|
||||
//
|
||||
// Class description:
|
||||
//
|
||||
// This class manages the importance sampling and importance weight window
|
||||
// sampling together with scoring in a parallel geometry.
|
||||
// The user must create an object of this kind and initialise it.
|
||||
|
||||
// Author: Michael Dressel (Michael.Dressel@cern.ch)
|
||||
// ----------------------------------------------------------------------
|
||||
#ifndef G4PImportanceWWindowScoreSampler_hh
|
||||
#define G4PImportanceWWindowScoreSampler_hh G4PImportanceWWindowScoreSampler_hh
|
||||
|
||||
#include "globals.hh"
|
||||
#include "G4VSampler.hh"
|
||||
|
||||
class G4VIStore;
|
||||
class G4VPScorer;
|
||||
class G4VImportanceAlgorithm;
|
||||
class G4PScoreProcess;
|
||||
class G4ParallelWorld;
|
||||
class G4ParallelImportanceSampler;
|
||||
class G4VProcess;
|
||||
class G4VWeightWindowAlgorithm;
|
||||
|
||||
class G4PImportanceWWindowScoreSampler :
|
||||
public G4VSampler
|
||||
{
|
||||
|
||||
public: // with description
|
||||
|
||||
G4PImportanceWWindowScoreSampler(G4VIStore &iw,
|
||||
G4VPScorer &ascorer,
|
||||
const G4String &particlename,
|
||||
G4VWeightWindowAlgorithm &wwalg,
|
||||
const G4VImportanceAlgorithm *ialg = 0);
|
||||
// if *ialg = 0: use G4ImportanceAlgorithm
|
||||
// use a customised importance algorithm derived from
|
||||
// G4VImportanceAlgorithm
|
||||
|
||||
|
||||
~G4PImportanceWWindowScoreSampler();
|
||||
// delete constructed objects
|
||||
|
||||
G4PScoreProcess *CreateParallelScoreProcess();
|
||||
// create the parallel score process
|
||||
// don't use it if you use Initialize()
|
||||
|
||||
G4VProcess *CreateWeightWindowProcess();
|
||||
|
||||
void Initialize();
|
||||
// the G4MassImportanceScoreSampler has to be initialised after
|
||||
// the initialisation of the G4RunManager !
|
||||
|
||||
private:
|
||||
|
||||
G4PImportanceWWindowScoreSampler(const G4PImportanceWWindowScoreSampler &);
|
||||
G4PImportanceWWindowScoreSampler &
|
||||
operator=(const G4PImportanceWWindowScoreSampler &);
|
||||
|
||||
private:
|
||||
G4String fParticleName;
|
||||
G4ParallelWorld &fParallelWorld;
|
||||
G4ParallelImportanceSampler &fParallelImportanceSampler;
|
||||
G4VPScorer &fPScorer;
|
||||
G4VIStore &fIstore;
|
||||
G4PScoreProcess *fPScoreProcess;
|
||||
G4VProcess *fPWeightWindowProcess;
|
||||
G4VWeightWindowAlgorithm &fWWAlgorithm;
|
||||
};
|
||||
|
||||
#endif
|
||||
@@ -0,0 +1,71 @@
|
||||
//
|
||||
// ********************************************************************
|
||||
// * DISCLAIMER *
|
||||
// * *
|
||||
// * The following disclaimer summarizes all the specific disclaimers *
|
||||
// * of contributors to this software. The specific disclaimers,which *
|
||||
// * govern, are listed with their locations in: *
|
||||
// * http://cern.ch/geant4/license *
|
||||
// * *
|
||||
// * 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. *
|
||||
// * *
|
||||
// * This code implementation is the intellectual property of the *
|
||||
// * GEANT4 collaboration. *
|
||||
// * By copying, distributing or modifying the Program (or any work *
|
||||
// * based on the Program) you indicate your acceptance of this *
|
||||
// * statement, and all its terms. *
|
||||
// ********************************************************************
|
||||
//
|
||||
//
|
||||
// $Id: G4PScoreConfigurator.hh,v 1.3 2002/10/22 13:25:56 dressel Exp $
|
||||
// GEANT4 tag $Name: geant4-05-00 $
|
||||
//
|
||||
// ----------------------------------------------------------------------
|
||||
// Class G4PScoreConfigurator
|
||||
//
|
||||
// Class description:
|
||||
// This class builds and places the G4PScoreProcess
|
||||
// If the object is deleted the process is removed from the
|
||||
// process list.
|
||||
|
||||
// Author: Michael Dressel (Michael.Dressel@cern.ch)
|
||||
// ----------------------------------------------------------------------
|
||||
|
||||
#ifndef G4PScoreConfigurator_hh
|
||||
#define G4PScoreConfigurator_hh G4PScoreConfigurator_hh
|
||||
|
||||
#include "G4VSamplerConfigurator.hh"
|
||||
|
||||
#include "globals.hh"
|
||||
#include "G4PScoreProcess.hh"
|
||||
#include "G4ProcessPlacer.hh"
|
||||
|
||||
class G4VParallelStepper;
|
||||
class G4VScorer;
|
||||
class G4VTrackTerminator;
|
||||
|
||||
class G4PScoreConfigurator : public G4VSamplerConfigurator{
|
||||
public:
|
||||
G4PScoreConfigurator(const G4String &particlename,
|
||||
G4VParallelStepper &pstepper,
|
||||
G4VScorer &scorer);
|
||||
virtual ~G4PScoreConfigurator();
|
||||
|
||||
virtual void Configure(G4VSamplerConfigurator *preConf);
|
||||
virtual const G4VTrackTerminator *GetTrackTerminator() const;
|
||||
|
||||
private:
|
||||
G4PScoreConfigurator(const G4PScoreConfigurator &);
|
||||
G4PScoreConfigurator &operator=(const G4PScoreConfigurator &);
|
||||
G4ProcessPlacer fPlacer;
|
||||
G4VParallelStepper &fPStepper;
|
||||
G4VScorer &fScorer;
|
||||
G4PScoreProcess *fPScoreProcess;
|
||||
};
|
||||
|
||||
|
||||
#endif
|
||||
@@ -21,8 +21,8 @@
|
||||
// ********************************************************************
|
||||
//
|
||||
//
|
||||
// $Id: G4PScoreProcess.hh,v 1.3 2002/04/10 13:14:16 dressel Exp $
|
||||
// GEANT4 tag $Name: geant4-04-01 $
|
||||
// $Id: G4PScoreProcess.hh,v 1.7 2002/10/22 13:25:56 dressel Exp $
|
||||
// GEANT4 tag $Name: geant4-05-00 $
|
||||
//
|
||||
// ----------------------------------------------------------------------
|
||||
// Class G4PIScoreProcess
|
||||
@@ -30,8 +30,8 @@
|
||||
// Class description:
|
||||
//
|
||||
// Used internally by scoring in a "parallel" geometry.
|
||||
// This forced process messages a "scorer" derived from G4VPScorer.
|
||||
// The scorer is messaged with the current G4Step and G4PStep.
|
||||
// This forced process messages a "scorer" derived from G4VScorer.
|
||||
// The scorer is messaged with the current G4Step and G4GeometryCellStep.
|
||||
// This post step process is supposed to be placed as the
|
||||
// process following directly after transportation and the
|
||||
// importance sampling process if applied and before all physical
|
||||
@@ -43,17 +43,19 @@
|
||||
#define G4PScoreProcess_hh G4PScoreProcess_hh
|
||||
|
||||
#include "G4VProcess.hh"
|
||||
#include "G4VTrackTerminator.hh"
|
||||
|
||||
class G4VParallelStepper;
|
||||
class G4VPScorer;
|
||||
class G4VScorer;
|
||||
|
||||
class G4PScoreProcess : public G4VProcess
|
||||
class G4PScoreProcess : public G4VProcess,
|
||||
public G4VTrackTerminator
|
||||
{
|
||||
|
||||
public: // with description
|
||||
|
||||
G4PScoreProcess(G4VParallelStepper &astepper,
|
||||
G4VPScorer &aScorer,
|
||||
G4VScorer &aScorer,
|
||||
const G4String &aName = "PScoreProcess");
|
||||
// create a G4ParticleChange
|
||||
|
||||
@@ -67,24 +69,32 @@ public: // with description
|
||||
// make the process beeing forced
|
||||
|
||||
virtual G4VParticleChange * PostStepDoIt(const G4Track&,
|
||||
const G4Step&);
|
||||
// get G4PStep and G4Step and message "scorer"
|
||||
|
||||
const G4Step&);
|
||||
// get G4GeometryCellStep and G4Step and message "scorer"
|
||||
|
||||
virtual void KillTrack() const;
|
||||
|
||||
virtual const G4String &GetName() const;
|
||||
|
||||
// to be called by the importance process if the track should
|
||||
// be killed after scoring
|
||||
|
||||
public: // without description
|
||||
|
||||
// no operation in AtRestDoIt and AlongStepDoIt
|
||||
|
||||
G4double AlongStepGetPhysicalInteractionLength(const G4Track&,
|
||||
G4double ,
|
||||
G4double ,
|
||||
G4double& ,
|
||||
G4GPILSelection*) {return -1.0;}
|
||||
|
||||
G4double AtRestGetPhysicalInteractionLength(const G4Track& ,
|
||||
G4ForceCondition*) {return -1.0;}
|
||||
virtual G4double
|
||||
AlongStepGetPhysicalInteractionLength(const G4Track&,
|
||||
G4double ,
|
||||
G4double ,
|
||||
G4double& ,
|
||||
G4GPILSelection*);
|
||||
|
||||
G4VParticleChange* AtRestDoIt(const G4Track&, const G4Step&) {return 0;}
|
||||
G4VParticleChange* AlongStepDoIt(const G4Track&, const G4Step&) {return 0;}
|
||||
virtual G4double AtRestGetPhysicalInteractionLength(const G4Track& ,
|
||||
G4ForceCondition*);
|
||||
|
||||
virtual G4VParticleChange* AtRestDoIt(const G4Track&, const G4Step&);
|
||||
virtual G4VParticleChange* AlongStepDoIt(const G4Track&, const G4Step&);
|
||||
|
||||
private:
|
||||
|
||||
@@ -92,7 +102,9 @@ private:
|
||||
G4PScoreProcess &operator=(const G4PScoreProcess &);
|
||||
|
||||
G4VParallelStepper &fPstepper;
|
||||
G4VPScorer &fScorer;
|
||||
G4VScorer &fScorer;
|
||||
|
||||
mutable G4bool fKillTrack;
|
||||
};
|
||||
|
||||
#endif
|
||||
|
||||
@@ -0,0 +1,64 @@
|
||||
//
|
||||
// ********************************************************************
|
||||
// * DISCLAIMER *
|
||||
// * *
|
||||
// * The following disclaimer summarizes all the specific disclaimers *
|
||||
// * of contributors to this software. The specific disclaimers,which *
|
||||
// * govern, are listed with their locations in: *
|
||||
// * http://cern.ch/geant4/license *
|
||||
// * *
|
||||
// * 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. *
|
||||
// * *
|
||||
// * This code implementation is the intellectual property of the *
|
||||
// * GEANT4 collaboration. *
|
||||
// * By copying, distributing or modifying the Program (or any work *
|
||||
// * based on the Program) you indicate your acceptance of this *
|
||||
// * statement, and all its terms. *
|
||||
// ********************************************************************
|
||||
//
|
||||
//
|
||||
// $Id: G4ParallelGCellFinder.hh,v 1.1 2002/10/16 16:27:41 dressel Exp $
|
||||
// GEANT4 tag $Name: geant4-05-00 $
|
||||
//
|
||||
// ----------------------------------------------------------------------
|
||||
// Class G4ParallelGCellFinder
|
||||
//
|
||||
// Class description:
|
||||
//
|
||||
// Find a G4GeometryCell in the parallel geometry.
|
||||
//
|
||||
|
||||
// Author: Michael Dressel (Michael.Dressel@cern.ch)
|
||||
// ----------------------------------------------------------------------
|
||||
|
||||
#ifndef G4ParallelGCellFinder_hh
|
||||
#define G4ParallelGCellFinder_hh G4ParallelGCellFinder_hh
|
||||
|
||||
#include "globals.hh"
|
||||
|
||||
#include "G4VGCellFinder.hh"
|
||||
|
||||
class G4VParallelStepper;
|
||||
class G4ParallelGCellFinder : public G4VGCellFinder
|
||||
{
|
||||
|
||||
public: // with description
|
||||
|
||||
explicit G4ParallelGCellFinder(const G4VParallelStepper &astepper);
|
||||
virtual ~G4ParallelGCellFinder();
|
||||
|
||||
virtual G4GeometryCell
|
||||
GetPreGeometryCell(const G4Step &aStep) const;
|
||||
virtual G4GeometryCell
|
||||
GetPostGeometryCell(const G4Step &aStep) const;
|
||||
|
||||
private:
|
||||
const G4VParallelStepper &fPStepper;
|
||||
|
||||
};
|
||||
|
||||
#endif
|
||||
+52
-45
@@ -21,72 +21,79 @@
|
||||
// ********************************************************************
|
||||
//
|
||||
//
|
||||
// $Id: G4ParallelImportanceScoreSampler.hh,v 1.1 2002/05/31 10:16:01 dressel Exp $
|
||||
// GEANT4 tag $Name: geant4-04-01 $
|
||||
// $Id: G4ParallelGeometrySampler.hh,v 1.3 2002/10/22 13:25:56 dressel Exp $
|
||||
// GEANT4 tag $Name: geant4-05-00 $
|
||||
//
|
||||
// ----------------------------------------------------------------------
|
||||
// Class G4ParallelImportanceScoreSampler
|
||||
// Class G4ParallelGeometrySampler
|
||||
//
|
||||
// Class description:
|
||||
//
|
||||
// A user should use this class to set up importance sampling and scoring
|
||||
// in a "parallel" geometry.
|
||||
// The user must create an object of this kind and initialise it.
|
||||
// Class description:
|
||||
// This class inherits from G4VSampler. It is used for scoring and
|
||||
// importance smpling in a parallel geometry.
|
||||
// See also the description in G4VSampler.hh.
|
||||
//
|
||||
|
||||
// Author: Michael Dressel (Michael.Dressel@cern.ch)
|
||||
// ----------------------------------------------------------------------
|
||||
#ifndef G4ParallelImportanceScoreSampler_hh
|
||||
#define G4ParallelImportanceScoreSampler_hh G4ParallelImportanceScoreSampler_hh
|
||||
#ifndef G4ParallelGeometrySampler_hh
|
||||
#define G4ParallelGeometrySampler_hh G4ParallelGeometrySampler_hh
|
||||
|
||||
#include "globals.hh"
|
||||
#include "G4VSampler.hh"
|
||||
|
||||
class G4VIStore;
|
||||
class G4VPScorer;
|
||||
class G4VImportanceAlgorithm;
|
||||
class G4PScoreProcess;
|
||||
class G4ParallelWorld;
|
||||
class G4ParallelImportanceSampler;
|
||||
#include "globals.hh"
|
||||
|
||||
class G4ParallelImportanceScoreSampler :
|
||||
public G4VSampler
|
||||
{
|
||||
#include "G4ParallelWorld.hh"
|
||||
|
||||
public: // with description
|
||||
#include "G4VSamplerConfigurator.hh"
|
||||
|
||||
class G4ParallelTransportConfigurator;
|
||||
class G4PScoreConfigurator;
|
||||
class G4PImportanceConfigurator;
|
||||
class G4WeightCutOffConfigurator;
|
||||
class G4VGCellFinder;
|
||||
|
||||
class G4ParallelGeometrySampler : public G4VSampler{
|
||||
|
||||
public:
|
||||
|
||||
|
||||
G4ParallelImportanceScoreSampler(G4VIStore &iw,
|
||||
G4VPScorer &ascorer,
|
||||
const G4String &particlename,
|
||||
const G4VImportanceAlgorithm *ialg = 0);
|
||||
// if *ialg = 0: use G4ImportanceAlgorithm,
|
||||
// use a customised importance algorithm derived from
|
||||
// G4VImportanceAlgorithm
|
||||
G4ParallelGeometrySampler(G4VPhysicalVolume &worldvolume,
|
||||
const G4String &particlename);
|
||||
virtual ~G4ParallelGeometrySampler();
|
||||
|
||||
virtual void PrepareScoring(G4VScorer *Scorer);
|
||||
virtual void PrepareImportanceSampling(G4VIStore *istore,
|
||||
const G4VImportanceAlgorithm
|
||||
*ialg);
|
||||
virtual void PrepareWeightRoulett(G4double wsurvive,
|
||||
G4double wlimit,
|
||||
G4double isource);
|
||||
|
||||
virtual void Configure();
|
||||
|
||||
~G4ParallelImportanceScoreSampler();
|
||||
// delete constructed objects
|
||||
|
||||
G4PScoreProcess *CreateParallelScoreProcess();
|
||||
// create the parallel score process
|
||||
// don't use it if you use Initialize()
|
||||
|
||||
void Initialize();
|
||||
// the G4MassImportanceScoreSampler has to be initialised after
|
||||
// the initialisation of the G4RunManager !
|
||||
|
||||
virtual void ClearSampling();
|
||||
virtual G4bool IsConfigured() const;
|
||||
|
||||
private:
|
||||
|
||||
G4ParallelImportanceScoreSampler(const G4ParallelImportanceScoreSampler &);
|
||||
G4ParallelImportanceScoreSampler &
|
||||
operator=(const G4ParallelImportanceScoreSampler &);
|
||||
G4ParallelGeometrySampler(const G4ParallelGeometrySampler &);
|
||||
G4ParallelGeometrySampler &
|
||||
operator=(const G4ParallelGeometrySampler &);
|
||||
|
||||
private:
|
||||
G4String fParticleName;
|
||||
G4ParallelWorld &fParallelWorld;
|
||||
G4ParallelImportanceSampler &fParallelImportanceSampler;
|
||||
G4VPScorer &fPScorer;
|
||||
G4PScoreProcess *fPScoreProcess;
|
||||
G4ParallelWorld fParallelWorld;
|
||||
G4ParallelTransportConfigurator *fParallelTransportConfigurator;
|
||||
G4PImportanceConfigurator *fPImportanceConfigurator;
|
||||
G4PScoreConfigurator *fPScoreConfigurator;
|
||||
G4VGCellFinder *fGCellFinder;
|
||||
G4WeightCutOffConfigurator *fWeightCutOffConfigurator;
|
||||
G4VIStore *fIStore;
|
||||
G4bool fIsConfigured;
|
||||
G4Configurators fConfigurators;
|
||||
};
|
||||
|
||||
|
||||
#endif
|
||||
|
||||
@@ -21,8 +21,8 @@
|
||||
// ********************************************************************
|
||||
//
|
||||
//
|
||||
// $Id: G4ParallelImportanceProcess.hh,v 1.5 2002/05/31 10:16:01 dressel Exp $
|
||||
// GEANT4 tag $Name: geant4-04-01 $
|
||||
// $Id: G4ParallelImportanceProcess.hh,v 1.8 2002/10/16 16:26:58 dressel Exp $
|
||||
// GEANT4 tag $Name: geant4-05-00 $
|
||||
//
|
||||
// ----------------------------------------------------------------------
|
||||
// Class G4ParallelImportanceProcess
|
||||
@@ -40,11 +40,12 @@
|
||||
|
||||
#include "G4ParallelTransport.hh"
|
||||
#include "G4ImportancePostStepDoIt.hh"
|
||||
#include "G4VTrackTerminator.hh"
|
||||
|
||||
class G4VImportanceSplitExaminer;
|
||||
class G4Nsplit_Weight;
|
||||
|
||||
class G4ParallelImportanceProcess : public G4ParallelTransport
|
||||
class G4ParallelImportanceProcess : public G4ParallelTransport, public G4VTrackTerminator
|
||||
{
|
||||
|
||||
public: // with description
|
||||
@@ -52,25 +53,39 @@ public: // with description
|
||||
G4ParallelImportanceProcess(const G4VImportanceSplitExaminer &aImportanceSplitExaminer,
|
||||
G4VPGeoDriver &pgeodriver,
|
||||
G4VParallelStepper &aStepper,
|
||||
const G4VTrackTerminator *TrackTerminator,
|
||||
const G4String &aName = "ParallelImportanceProcess");
|
||||
// initialise G4ParallelTransport and members
|
||||
|
||||
G4VParticleChange *PostStepDoIt(const G4Track&,
|
||||
const G4Step&);
|
||||
virtual ~G4ParallelImportanceProcess();
|
||||
|
||||
virtual G4VParticleChange *PostStepDoIt(const G4Track&,
|
||||
const G4Step&);
|
||||
// do the "parallel transport" and importance sampling.
|
||||
|
||||
virtual void KillTrack() const;
|
||||
// used in case no scoring process follows that does the killing
|
||||
|
||||
virtual const G4String &GetName() const;
|
||||
|
||||
|
||||
private:
|
||||
|
||||
G4ParallelImportanceProcess(const G4ParallelImportanceProcess &);
|
||||
G4ParallelImportanceProcess &operator=(const G4ParallelImportanceProcess &);
|
||||
|
||||
void Error(const G4String &m);
|
||||
virtual void Error(const G4String &m);
|
||||
|
||||
private:
|
||||
|
||||
const G4VTrackTerminator *fTrackTerminator;
|
||||
G4ParticleChange *fParticleChange;
|
||||
const G4VImportanceSplitExaminer &fImportanceSplitExaminer;
|
||||
G4ImportancePostStepDoIt fImportancePostStepDoIt;
|
||||
};
|
||||
|
||||
#endif
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
@@ -1,104 +0,0 @@
|
||||
//
|
||||
// ********************************************************************
|
||||
// * DISCLAIMER *
|
||||
// * *
|
||||
// * The following disclaimer summarizes all the specific disclaimers *
|
||||
// * of contributors to this software. The specific disclaimers,which *
|
||||
// * govern, are listed with their locations in: *
|
||||
// * http://cern.ch/geant4/license *
|
||||
// * *
|
||||
// * 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. *
|
||||
// * *
|
||||
// * This code implementation is the intellectual property of the *
|
||||
// * GEANT4 collaboration. *
|
||||
// * By copying, distributing or modifying the Program (or any work *
|
||||
// * based on the Program) you indicate your acceptance of this *
|
||||
// * statement, and all its terms. *
|
||||
// ********************************************************************
|
||||
//
|
||||
//
|
||||
// $Id: G4ParallelImportanceSampler.hh,v 1.1 2002/05/31 10:16:01 dressel Exp $
|
||||
// GEANT4 tag $Name: geant4-04-01 $
|
||||
//
|
||||
// ----------------------------------------------------------------------
|
||||
// Class G4ParallelImportanceSampler
|
||||
//
|
||||
// Class description:
|
||||
//
|
||||
// A user should use this class to set up importance sampling
|
||||
// in a "parallel" geometry.
|
||||
// The user must create an object of this kind and initialise it.
|
||||
|
||||
|
||||
// Author: Michael Dressel (Michael.Dressel@cern.ch)
|
||||
// ----------------------------------------------------------------------
|
||||
#ifndef G4ParallelImportanceSampler_hh
|
||||
#define G4ParallelImportanceSampler_hh G4ParallelImportanceSampler_hh
|
||||
|
||||
#include "globals.hh"
|
||||
#include "G4VSampler.hh"
|
||||
|
||||
class G4ParallelWorld;
|
||||
class G4VIStore;
|
||||
class G4VImportanceAlgorithm;
|
||||
class G4VImportanceSplitExaminer;
|
||||
class G4ParallelImportanceProcess;
|
||||
|
||||
class G4ParallelImportanceSampler : public G4VSampler
|
||||
{
|
||||
|
||||
public: // with description
|
||||
|
||||
G4ParallelImportanceSampler(G4VIStore &is,
|
||||
const G4String &particlename,
|
||||
const G4VImportanceAlgorithm *ialg = 0);
|
||||
// if *ialg = 0: use the G4ImportanceAlgorithm
|
||||
// use a customised importance algorithm derived from
|
||||
// G4VImportanceAlgorithm
|
||||
// create G4ParallelWorld and G4ImportanceSplitExaminer
|
||||
|
||||
public: // used internally by importance sampling
|
||||
|
||||
G4ParallelImportanceSampler(G4VIStore &is,
|
||||
const G4String &particlename,
|
||||
G4ParallelWorld &pworld,
|
||||
const G4VImportanceAlgorithm *ialg = 0);
|
||||
|
||||
~G4ParallelImportanceSampler();
|
||||
// delete G4ParallelWorld and G4ImportanceSplitExaminer
|
||||
// and G4ImportanceAgorithm and G4ParallelImportanceProcess
|
||||
// if created
|
||||
|
||||
public: // with description
|
||||
|
||||
G4ParallelImportanceProcess *CreateParallelImportanceProcess();
|
||||
// create the parallel importance process
|
||||
// don't use it if you use Initialize()
|
||||
|
||||
void Initialize();
|
||||
// the G4ParallelImportanceSampler has to be initialised after
|
||||
// the initialisation of the G4RunManager !
|
||||
|
||||
private:
|
||||
|
||||
G4ParallelImportanceSampler(const G4ParallelImportanceSampler &);
|
||||
G4ParallelImportanceSampler &operator=(const G4ParallelImportanceSampler &);
|
||||
|
||||
private:
|
||||
|
||||
G4String fParticleName;
|
||||
G4ParallelWorld &fParallelWorld;
|
||||
G4bool fCreatedPW;
|
||||
|
||||
G4bool fDeleteAlg;
|
||||
const G4VImportanceAlgorithm *fIalgorithm;
|
||||
|
||||
G4VImportanceSplitExaminer *fExaminer;
|
||||
G4ParallelImportanceProcess *fParallelImportanceProcess;
|
||||
};
|
||||
|
||||
#endif
|
||||
@@ -21,8 +21,8 @@
|
||||
// ********************************************************************
|
||||
//
|
||||
//
|
||||
// $Id: G4ParallelTransport.hh,v 1.4 2002/05/02 08:43:23 dressel Exp $
|
||||
// GEANT4 tag $Name: geant4-04-01 $
|
||||
// $Id: G4ParallelTransport.hh,v 1.6 2002/10/16 16:26:58 dressel Exp $
|
||||
// GEANT4 tag $Name: geant4-05-00 $
|
||||
//
|
||||
// ----------------------------------------------------------------------
|
||||
// Class G4ParallelTransport
|
||||
@@ -79,24 +79,28 @@ public: // with description
|
||||
virtual void EndTracking();
|
||||
|
||||
|
||||
G4VParallelStepper &GetPStepper(){return fPStepper;}
|
||||
const G4VParallelStepper &GetPStepper() const;
|
||||
// get the fPStepper
|
||||
|
||||
public: // without description
|
||||
|
||||
// no operation in AtRestDoIt and AlongStepDoIt
|
||||
|
||||
G4double AlongStepGetPhysicalInteractionLength(const G4Track&,
|
||||
G4double ,
|
||||
G4double ,
|
||||
G4double& ,
|
||||
G4GPILSelection*) {return -1.0;}
|
||||
G4double AtRestGetPhysicalInteractionLength(const G4Track& ,
|
||||
G4ForceCondition*) {return -1.0;}
|
||||
|
||||
G4VParticleChange* AtRestDoIt(const G4Track&, const G4Step&) {return 0;}
|
||||
G4VParticleChange* AlongStepDoIt(const G4Track&, const G4Step&) {return 0;}
|
||||
virtual G4double
|
||||
AlongStepGetPhysicalInteractionLength(const G4Track&,
|
||||
G4double ,
|
||||
G4double ,
|
||||
G4double& ,
|
||||
G4GPILSelection*);
|
||||
virtual G4double
|
||||
AtRestGetPhysicalInteractionLength(const G4Track& ,
|
||||
G4ForceCondition*);
|
||||
|
||||
virtual G4VParticleChange* AtRestDoIt(const G4Track&,
|
||||
const G4Step&);
|
||||
virtual G4VParticleChange* AlongStepDoIt(const G4Track&,
|
||||
const G4Step&);
|
||||
|
||||
protected:
|
||||
|
||||
virtual void Error(const G4String &m);
|
||||
@@ -119,4 +123,11 @@ private:
|
||||
|
||||
};
|
||||
|
||||
|
||||
inline const G4VParallelStepper &G4ParallelTransport::
|
||||
GetPStepper() const {
|
||||
return fPStepper;
|
||||
}
|
||||
|
||||
|
||||
#endif
|
||||
|
||||
+29
-47
@@ -21,67 +21,49 @@
|
||||
// ********************************************************************
|
||||
//
|
||||
//
|
||||
// $Id: G4ParallelScoreSampler.hh,v 1.1 2002/05/31 10:16:01 dressel Exp $
|
||||
// GEANT4 tag $Name: geant4-04-01 $
|
||||
// $Id: G4ParallelTransportConfigurator.hh,v 1.3 2002/10/22 13:25:56 dressel Exp $
|
||||
// GEANT4 tag $Name: geant4-05-00 $
|
||||
//
|
||||
// ----------------------------------------------------------------------
|
||||
// Class G4ParallelScoreSampler
|
||||
// Class G4ParallelTransportConfigurator
|
||||
//
|
||||
// Class description:
|
||||
//
|
||||
// A user should use this class to set up scoring in a "parallel"
|
||||
// geometry.
|
||||
// The user must create an object of this kind and initialise it.
|
||||
|
||||
// This class builds and places the G4ParallelTransport
|
||||
// If the object is deleted the process is removed from the
|
||||
// process list.
|
||||
|
||||
// Author: Michael Dressel (Michael.Dressel@cern.ch)
|
||||
// ----------------------------------------------------------------------
|
||||
#ifndef G4ParallelScoreSampler_hh
|
||||
#define G4ParallelScoreSampler_hh G4ParallelScoreSampler_hh
|
||||
|
||||
#ifndef G4ParallelTransportConfigurator_hh
|
||||
#define G4ParallelTransportConfigurator_hh G4ParallelTransportConfigurator_hh
|
||||
|
||||
#include "G4VSamplerConfigurator.hh"
|
||||
|
||||
#include "globals.hh"
|
||||
#include "G4VSampler.hh"
|
||||
#include "G4ParallelTransport.hh"
|
||||
#include "G4ProcessPlacer.hh"
|
||||
|
||||
|
||||
class G4ParallelWorld;
|
||||
class G4VPhysicalVolume;
|
||||
class G4ParallelTransport;
|
||||
class G4VPScorer;
|
||||
class G4PScoreProcess;
|
||||
|
||||
class G4ParallelScoreSampler : public G4VSampler
|
||||
{
|
||||
|
||||
public: // with description
|
||||
|
||||
G4ParallelScoreSampler(G4VPhysicalVolume &worldvolume,
|
||||
const G4String &particlename,
|
||||
G4VPScorer &scorer);
|
||||
// create and initalise members
|
||||
|
||||
~G4ParallelScoreSampler();
|
||||
// delete constructed members
|
||||
|
||||
G4PScoreProcess *CreateParallelScoreProcess();
|
||||
// create the parallel score process
|
||||
// don't use it if you use Initialize()
|
||||
G4ParallelTransport *CreateParallelTransport();
|
||||
// get the G4ParallelTransport
|
||||
|
||||
void Initialize();
|
||||
// the G4ParallelScoreSampler has to be initialised after
|
||||
// the initialisation of the G4RunManager !
|
||||
|
||||
class G4ParallelTransportConfigurator : public G4VSamplerConfigurator{
|
||||
public:
|
||||
G4ParallelTransportConfigurator(const G4String &particlename,
|
||||
G4ParallelWorld &pworld);
|
||||
virtual ~G4ParallelTransportConfigurator();
|
||||
virtual void Configure(G4VSamplerConfigurator *preConf);
|
||||
virtual const G4VTrackTerminator *GetTrackTerminator() const;
|
||||
|
||||
private:
|
||||
|
||||
G4ParallelScoreSampler(const G4ParallelScoreSampler &);
|
||||
G4ParallelScoreSampler &operator=(const G4ParallelScoreSampler&);
|
||||
|
||||
private:
|
||||
G4String fParticleName;
|
||||
G4ParallelWorld &fParallelWorld;
|
||||
G4VPScorer &fPScorer;
|
||||
G4PScoreProcess *fPScorerProcess;
|
||||
G4ParallelTransportConfigurator(const
|
||||
G4ParallelTransportConfigurator &);
|
||||
G4ParallelTransportConfigurator &
|
||||
operator=(const G4ParallelTransportConfigurator &);
|
||||
G4ProcessPlacer fPlacer;
|
||||
G4ParallelWorld &fPWorld;
|
||||
G4ParallelTransport *fParallelTransport;
|
||||
};
|
||||
|
||||
|
||||
#endif
|
||||
@@ -1,118 +0,0 @@
|
||||
//
|
||||
// ********************************************************************
|
||||
// * DISCLAIMER *
|
||||
// * *
|
||||
// * The following disclaimer summarizes all the specific disclaimers *
|
||||
// * of contributors to this software. The specific disclaimers,which *
|
||||
// * govern, are listed with their locations in: *
|
||||
// * http://cern.ch/geant4/license *
|
||||
// * *
|
||||
// * 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. *
|
||||
// * *
|
||||
// * This code implementation is the intellectual property of the *
|
||||
// * GEANT4 collaboration. *
|
||||
// * By copying, distributing or modifying the Program (or any work *
|
||||
// * based on the Program) you indicate your acceptance of this *
|
||||
// * statement, and all its terms. *
|
||||
// ********************************************************************
|
||||
//
|
||||
//
|
||||
// $Id: G4ParallelWeightWindowProcess.hh,v 1.2 2002/05/31 10:16:01 dressel Exp $
|
||||
// GEANT4 tag $Name: geant4-04-01 $
|
||||
//
|
||||
// ----------------------------------------------------------------------
|
||||
// Class G4ParallelWeightWindowProcess
|
||||
//
|
||||
// Class description:
|
||||
//
|
||||
// The process performing the weight window sampling according
|
||||
// to an G4VWeightWindowAlgorithm
|
||||
//
|
||||
|
||||
// Author: Michael Dressel (Michael.Dressel@cern.ch)
|
||||
// ----------------------------------------------------------------------
|
||||
#ifndef G4ParallelWeightWindowProcess_hh
|
||||
#define G4ParallelWeightWindowProcess_hh G4ParallelWeightWindowProcess_hh
|
||||
|
||||
#include "g4std/strstream"
|
||||
|
||||
#include "G4VProcess.hh"
|
||||
#include "globals.hh"
|
||||
#include "G4Nsplit_Weight.hh"
|
||||
#include "G4ImportancePostStepDoIt.hh"
|
||||
|
||||
class G4VIStore;;
|
||||
class G4VParallelStepper;
|
||||
class G4VWeightWindowAlgorithm;
|
||||
|
||||
class G4ParallelWeightWindowProcess : public G4VProcess
|
||||
{
|
||||
|
||||
public: // with description
|
||||
|
||||
G4ParallelWeightWindowProcess(G4VIStore &aIstore,
|
||||
G4VParallelStepper &aStepper,
|
||||
G4VWeightWindowAlgorithm &aWWAlgorithm,
|
||||
const G4String &aName = "ParallelWeightWindowProcess");
|
||||
// create G4ParticleChange
|
||||
|
||||
virtual ~G4ParallelWeightWindowProcess();
|
||||
// delete G4ParticleChange
|
||||
|
||||
|
||||
|
||||
virtual G4double
|
||||
PostStepGetPhysicalInteractionLength(const G4Track& aTrack,
|
||||
G4double previousStepSize,
|
||||
G4ForceCondition* condition);
|
||||
|
||||
|
||||
virtual G4VParticleChange *PostStepDoIt(const G4Track&, const G4Step&);
|
||||
|
||||
|
||||
void StartTracking();
|
||||
void EndTracking();
|
||||
|
||||
public: // without description
|
||||
|
||||
// no operation in AtRestDoIt and AlongStepDoIt
|
||||
|
||||
G4double AlongStepGetPhysicalInteractionLength(const G4Track&,
|
||||
G4double ,
|
||||
G4double ,
|
||||
G4double& ,
|
||||
G4GPILSelection*) {return -1.0;}
|
||||
G4double AtRestGetPhysicalInteractionLength(const G4Track& ,
|
||||
G4ForceCondition*) {return -1.0;}
|
||||
|
||||
G4VParticleChange* AtRestDoIt(const G4Track&, const G4Step&) {return 0;}
|
||||
G4VParticleChange* AlongStepDoIt(const G4Track&, const G4Step&) {return 0;}
|
||||
|
||||
protected:
|
||||
|
||||
virtual void Error(const G4String &m);
|
||||
virtual void Warning(const G4String &m);
|
||||
|
||||
G4ParticleChange *fParticleChange;
|
||||
|
||||
|
||||
private:
|
||||
|
||||
G4ParallelWeightWindowProcess(const G4ParallelWeightWindowProcess &);
|
||||
G4ParallelWeightWindowProcess &operator=(const G4ParallelWeightWindowProcess &);
|
||||
|
||||
private:
|
||||
|
||||
G4VIStore &fIStore;
|
||||
G4VParallelStepper &fPStepper;
|
||||
G4VWeightWindowAlgorithm &fWWAlgorithm;
|
||||
G4Nsplit_Weight fNsplit_Weight;
|
||||
G4ImportancePostStepDoIt fImportancePostStepDoIt;
|
||||
G4bool fInitStep;
|
||||
};
|
||||
|
||||
#endif
|
||||
@@ -21,8 +21,8 @@
|
||||
// ********************************************************************
|
||||
//
|
||||
//
|
||||
// $Id: G4ProcessPlacer.hh,v 1.4 2002/05/24 08:17:19 dressel Exp $
|
||||
// GEANT4 tag $Name: geant4-04-01 $
|
||||
// $Id: G4ProcessPlacer.hh,v 1.6 2002/10/16 16:26:58 dressel Exp $
|
||||
// GEANT4 tag $Name: geant4-05-00 $
|
||||
//
|
||||
// ----------------------------------------------------------------------
|
||||
// Class G4ProcessPlacer
|
||||
@@ -48,32 +48,37 @@ class G4ProcessPlacer : public G4VProcessPlacer
|
||||
|
||||
public: // with description
|
||||
|
||||
G4ProcessPlacer(const G4String &particlename);
|
||||
explicit G4ProcessPlacer(const G4String &particlename);
|
||||
// create a process placer for a particle type
|
||||
|
||||
void AddProcessAsLastDoIt(G4VProcess *process);
|
||||
virtual ~G4ProcessPlacer();
|
||||
|
||||
virtual void AddProcessAsLastDoIt(G4VProcess *process);
|
||||
// place a post step do it process such that the
|
||||
// PostStepDoIt function is called last
|
||||
// THE ORDER CHANGES BY SUBSEQUENT CALLS
|
||||
|
||||
void AddProcessAsSecondDoIt(G4VProcess *process);
|
||||
virtual void AddProcessAsSecondDoIt(G4VProcess *process);
|
||||
// place a post step do it process such that the
|
||||
// PostStepDoIt function is called second
|
||||
// THE ORDER CHANGES BY SUBSEQUENT CALLS
|
||||
|
||||
void RemoveProcess(G4VProcess *process);
|
||||
virtual void RemoveProcess(G4VProcess *process);
|
||||
// removes a given process
|
||||
|
||||
private:
|
||||
|
||||
G4ProcessManager &GetProcessManager();
|
||||
|
||||
enum SecondOrLast
|
||||
{
|
||||
eSecond = 1,
|
||||
eLast = 0
|
||||
};
|
||||
|
||||
|
||||
private:
|
||||
|
||||
G4ProcessManager *GetProcessManager();
|
||||
|
||||
|
||||
|
||||
void AddProcessAs(G4VProcess *process, SecondOrLast);
|
||||
|
||||
void PrintProcVec(G4ProcessVector* processVec);
|
||||
|
||||
@@ -0,0 +1,62 @@
|
||||
//
|
||||
// ********************************************************************
|
||||
// * DISCLAIMER *
|
||||
// * *
|
||||
// * The following disclaimer summarizes all the specific disclaimers *
|
||||
// * of contributors to this software. The specific disclaimers,which *
|
||||
// * govern, are listed with their locations in: *
|
||||
// * http://cern.ch/geant4/license *
|
||||
// * *
|
||||
// * 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. *
|
||||
// * *
|
||||
// * This code implementation is the intellectual property of the *
|
||||
// * GEANT4 collaboration. *
|
||||
// * By copying, distributing or modifying the Program (or any work *
|
||||
// * based on the Program) you indicate your acceptance of this *
|
||||
// * statement, and all its terms. *
|
||||
// ********************************************************************
|
||||
//
|
||||
//
|
||||
// $Id: G4TrackTerminator.hh,v 1.1 2002/10/16 16:27:41 dressel Exp $
|
||||
// GEANT4 tag $Name: geant4-05-00 $
|
||||
//
|
||||
// ----------------------------------------------------------------------
|
||||
// Class G4TrackTerminator
|
||||
//
|
||||
// Class description:
|
||||
//
|
||||
// This is an interface for an object which maybe told to kill a track.
|
||||
// The type it provides is needed in case importance biasing and
|
||||
// scoring is done at the same time.
|
||||
// For navigation in the parallel geometry which is done
|
||||
// by the importance biasing process (it derives from G4ParallelTransport)
|
||||
// importance biasing has to be done before scoring (to score the correct
|
||||
// volume). But since scoring would not be called if the importance
|
||||
// biasing kills a track it only tells a G4TrackTerminator to kill the
|
||||
// track. The scoring process implements the interface G4TrackTerminator
|
||||
// and is now able to kill the track after it has done the scoring.
|
||||
//
|
||||
// Author: Michael Dressel (Michael.Dressel@cern.ch)
|
||||
// ----------------------------------------------------------------------
|
||||
|
||||
#ifndef G4TrackTerminator_hh
|
||||
#define G4TrackTerminator_hh G4TrackTerminator_hh
|
||||
#include "globals.hh"
|
||||
|
||||
class G4TrackTerminator {
|
||||
public:
|
||||
G4TrackTerminator():
|
||||
fKillTrack(false)
|
||||
{}
|
||||
~G4TrackTerminator();
|
||||
void SetKillTrack(){fKillTrack = true;}
|
||||
G4bool GetKillTrack() const {return fKillTrack;}
|
||||
private:
|
||||
G4bool fKillTrack;
|
||||
};
|
||||
|
||||
#endif
|
||||
@@ -21,8 +21,8 @@
|
||||
// ********************************************************************
|
||||
//
|
||||
//
|
||||
// $Id: G4Transportation.hh,v 1.6 2001/11/28 18:27:50 japost Exp $
|
||||
// GEANT4 tag $Name: geant4-04-01 $
|
||||
// $Id: G4Transportation.hh,v 1.7 2002/08/29 15:32:00 dressel Exp $
|
||||
// GEANT4 tag $Name: geant4-05-00 $
|
||||
//
|
||||
//
|
||||
// ------------------------------------------------------------
|
||||
|
||||
@@ -22,7 +22,7 @@
|
||||
//
|
||||
//
|
||||
// $Id: G4Transportation.icc,v 1.4 2001/11/06 01:38:19 radoone Exp $
|
||||
// GEANT4 tag $Name: geant4-04-01 $
|
||||
// GEANT4 tag $Name: geant4-05-00 $
|
||||
//
|
||||
|
||||
//
|
||||
|
||||
@@ -21,8 +21,8 @@
|
||||
// ********************************************************************
|
||||
//
|
||||
//
|
||||
// $Id: G4UserSpecialCuts.hh,v 1.4 2001/07/11 10:08:30 gunter Exp $
|
||||
// GEANT4 tag $Name: geant4-04-01 $
|
||||
// $Id: G4UserSpecialCuts.hh,v 1.5 2002/08/29 15:32:00 dressel Exp $
|
||||
// GEANT4 tag $Name: geant4-05-00 $
|
||||
// ------------------------------------------------------------
|
||||
// 15 April 1998 M.Maire
|
||||
// ------------------------------------------------------------
|
||||
|
||||
@@ -21,8 +21,8 @@
|
||||
// ********************************************************************
|
||||
//
|
||||
//
|
||||
// $Id: G4VProcessPlacer.hh,v 1.4 2002/05/24 08:17:19 dressel Exp $
|
||||
// GEANT4 tag $Name: geant4-04-01 $
|
||||
// $Id: G4VProcessPlacer.hh,v 1.7 2002/10/16 16:26:58 dressel Exp $
|
||||
// GEANT4 tag $Name: geant4-05-00 $
|
||||
//
|
||||
// ----------------------------------------------------------------------
|
||||
// Class G4VProcessPlacer
|
||||
@@ -46,8 +46,8 @@ class G4VProcessPlacer
|
||||
|
||||
public: // with description
|
||||
|
||||
G4VProcessPlacer(const G4String &particlename){}
|
||||
virtual ~G4VProcessPlacer(){}
|
||||
G4VProcessPlacer();
|
||||
virtual ~G4VProcessPlacer();
|
||||
|
||||
virtual void AddProcessAsLastDoIt(G4VProcess *process) = 0;
|
||||
// place a post step do it process such that the
|
||||
@@ -59,7 +59,7 @@ public: // with description
|
||||
// PostStepDoIt function is called second
|
||||
// THE ORDER CHANGES BY SUBSEQUENT CALLS
|
||||
|
||||
void RemoveProcess(G4VProcess *process);
|
||||
virtual void RemoveProcess(G4VProcess *process) = 0;
|
||||
// removes a given process
|
||||
|
||||
|
||||
|
||||
@@ -21,28 +21,60 @@
|
||||
// ********************************************************************
|
||||
//
|
||||
//
|
||||
// $Id: G4VSampler.hh,v 1.1 2002/05/31 08:08:22 dressel Exp $
|
||||
// GEANT4 tag $Name: geant4-04-01 $
|
||||
// $Id: G4VSampler.hh,v 1.6 2002/10/22 13:25:57 dressel Exp $
|
||||
// GEANT4 tag $Name: geant4-05-00 $
|
||||
//
|
||||
// ----------------------------------------------------------------------
|
||||
// Class G4VSampler
|
||||
//
|
||||
// Class description:
|
||||
// The base class for importance sampling and scoring.
|
||||
//
|
||||
//
|
||||
// This interface discribes a configurable sampler.
|
||||
// It applies to a given particle type.
|
||||
// Concrete classes with this interface may be used for
|
||||
// scoring, importance sampling and weigth cutoff (weight roulett).
|
||||
//
|
||||
|
||||
// Author: Michael Dressel (Michael.Dressel@cern.ch)
|
||||
// ----------------------------------------------------------------------
|
||||
#ifndef G4VSampler_hh
|
||||
#define G4VSampler_hh G4VSampler_hh
|
||||
|
||||
class G4VSampler
|
||||
{
|
||||
public:
|
||||
virtual ~G4VSampler(){}
|
||||
virtual void Initialize() = 0;
|
||||
// the user must initialize the concrete object this interface
|
||||
// covers afer the initialization of the G4RunManager
|
||||
};
|
||||
|
||||
#include "globals.hh"
|
||||
|
||||
class G4VPhysicalVolume;
|
||||
class G4VImportanceAlgorithm;
|
||||
class G4VIStore;
|
||||
class G4VScorer;
|
||||
|
||||
|
||||
class G4VSampler {
|
||||
|
||||
public:
|
||||
|
||||
G4VSampler();
|
||||
virtual ~G4VSampler();
|
||||
|
||||
virtual void PrepareScoring(G4VScorer *Scorer) = 0;
|
||||
|
||||
virtual void PrepareImportanceSampling(G4VIStore *istore,
|
||||
const G4VImportanceAlgorithm
|
||||
*ialg = 0) = 0;
|
||||
|
||||
|
||||
virtual void PrepareWeightRoulett(G4double wsurvive = 0.5,
|
||||
G4double wlimit = 0.25,
|
||||
G4double isource = 1) = 0;
|
||||
|
||||
virtual void Configure() = 0;
|
||||
|
||||
virtual void ClearSampling() = 0;
|
||||
// clear the sampler and remove the processes
|
||||
|
||||
virtual G4bool IsConfigured() const = 0;
|
||||
// check if some initialization hase already been done
|
||||
};
|
||||
|
||||
#endif
|
||||
|
||||
|
||||
@@ -0,0 +1,65 @@
|
||||
//
|
||||
// ********************************************************************
|
||||
// * DISCLAIMER *
|
||||
// * *
|
||||
// * The following disclaimer summarizes all the specific disclaimers *
|
||||
// * of contributors to this software. The specific disclaimers,which *
|
||||
// * govern, are listed with their locations in: *
|
||||
// * http://cern.ch/geant4/license *
|
||||
// * *
|
||||
// * 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. *
|
||||
// * *
|
||||
// * This code implementation is the intellectual property of the *
|
||||
// * GEANT4 collaboration. *
|
||||
// * By copying, distributing or modifying the Program (or any work *
|
||||
// * based on the Program) you indicate your acceptance of this *
|
||||
// * statement, and all its terms. *
|
||||
// ********************************************************************
|
||||
// ********************************************************************
|
||||
//
|
||||
//
|
||||
// $Id: G4VSamplerConfigurator.hh,v 1.3 2002/12/12 19:18:40 gunter Exp $
|
||||
// GEANT4 tag $Name: geant4-05-00 $
|
||||
//
|
||||
// ----------------------------------------------------------------------
|
||||
// Class G4VSamplerConfigurator
|
||||
//
|
||||
// Class description:
|
||||
//
|
||||
// This is an interface for configurators seeting up processes
|
||||
// needed for importance sampling and scoring.
|
||||
// The Configurator may be given a pointer to another Configurator.
|
||||
// If a configurator will be given a pointer to another configurator
|
||||
// it may obtain a G4VTrackTerminator from the given Configurator.
|
||||
// This way it is possible to delegate the killing of a track.
|
||||
//
|
||||
// Author: Michael Dressel (Michael.Dressel@cern.ch)
|
||||
// ----------------------------------------------------------------------
|
||||
|
||||
#ifndef G4VSamplerConfigurator_hh
|
||||
#define G4VSamplerConfigurator_hh G4VSamplerConfigurator_hh
|
||||
|
||||
#include "globals.hh"
|
||||
#include "g4std/vector"
|
||||
class G4VTrackTerminator;
|
||||
|
||||
|
||||
class G4VSamplerConfigurator{
|
||||
public:
|
||||
G4VSamplerConfigurator();
|
||||
virtual ~G4VSamplerConfigurator();
|
||||
virtual void Configure(G4VSamplerConfigurator *preConf) = 0;
|
||||
// do the configuration, if preConf is given a
|
||||
// G4VTrackTerminator may be obtained from it
|
||||
virtual const G4VTrackTerminator *GetTrackTerminator() const = 0;
|
||||
// return a G4VTrackTerminator or 0
|
||||
};
|
||||
|
||||
typedef G4std::vector<G4VSamplerConfigurator *> G4Configurators;
|
||||
|
||||
|
||||
#endif
|
||||
@@ -0,0 +1,58 @@
|
||||
//
|
||||
// ********************************************************************
|
||||
// * DISCLAIMER *
|
||||
// * *
|
||||
// * The following disclaimer summarizes all the specific disclaimers *
|
||||
// * of contributors to this software. The specific disclaimers,which *
|
||||
// * govern, are listed with their locations in: *
|
||||
// * http://cern.ch/geant4/license *
|
||||
// * *
|
||||
// * 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. *
|
||||
// * *
|
||||
// * This code implementation is the intellectual property of the *
|
||||
// * GEANT4 collaboration. *
|
||||
// * By copying, distributing or modifying the Program (or any work *
|
||||
// * based on the Program) you indicate your acceptance of this *
|
||||
// * statement, and all its terms. *
|
||||
// ********************************************************************
|
||||
//
|
||||
//
|
||||
// $Id: G4VTrackTerminator.hh,v 1.4 2002/10/16 16:26:59 dressel Exp $
|
||||
// GEANT4 tag $Name: geant4-05-00 $
|
||||
//
|
||||
// ----------------------------------------------------------------------
|
||||
// Class G4VTrackTerminator
|
||||
//
|
||||
// Class description:
|
||||
//
|
||||
// This is an interface for an object which maybe told to kill a track.
|
||||
// The type it provides is needed in case importance biasing and
|
||||
// scoring is done at the same time.
|
||||
// For navigation in the parallel geometry which is done
|
||||
// by the importance biasing process (it derives from G4ParallelTransport)
|
||||
// importance biasing has to be done before scoring (to score the correct
|
||||
// volume). But since scoring would not be called if the importance
|
||||
// biasing kills a track it only tells a G4VTrackTerminator to kill the
|
||||
// track. The scoring process implements the interface G4VTrackTerminator
|
||||
// and is now able to kill the track after it has done the scoring.
|
||||
//
|
||||
// Author: Michael Dressel (Michael.Dressel@cern.ch)
|
||||
// ----------------------------------------------------------------------
|
||||
|
||||
#ifndef G4VTrackTerminator_hh
|
||||
#define G4VTrackTerminator_hh G4VTrackTerminator_hh
|
||||
#include "globals.hh"
|
||||
|
||||
class G4VTrackTerminator {
|
||||
public:
|
||||
G4VTrackTerminator();
|
||||
virtual ~G4VTrackTerminator();
|
||||
virtual void KillTrack() const = 0;
|
||||
virtual const G4String &GetName() const = 0;
|
||||
};
|
||||
|
||||
#endif
|
||||
@@ -0,0 +1,74 @@
|
||||
//
|
||||
// ********************************************************************
|
||||
// * DISCLAIMER *
|
||||
// * *
|
||||
// * The following disclaimer summarizes all the specific disclaimers *
|
||||
// * of contributors to this software. The specific disclaimers,which *
|
||||
// * govern, are listed with their locations in: *
|
||||
// * http://cern.ch/geant4/license *
|
||||
// * *
|
||||
// * 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. *
|
||||
// * *
|
||||
// * This code implementation is the intellectual property of the *
|
||||
// * GEANT4 collaboration. *
|
||||
// * By copying, distributing or modifying the Program (or any work *
|
||||
// * based on the Program) you indicate your acceptance of this *
|
||||
// * statement, and all its terms. *
|
||||
// ********************************************************************
|
||||
//
|
||||
//
|
||||
// $Id: G4WeightCutOffConfigurator.hh,v 1.3 2002/10/22 13:25:57 dressel Exp $
|
||||
// GEANT4 tag $Name: geant4-05-00 $
|
||||
//
|
||||
// ----------------------------------------------------------------------
|
||||
// Class G4WeightCutOffConfigurator
|
||||
//
|
||||
// Class description:
|
||||
// This class builds and places the G4WeightCutOffProcess
|
||||
// If the object is deleted the process is removed from the
|
||||
// process list.
|
||||
|
||||
// Author: Michael Dressel (Michael.Dressel@cern.ch)
|
||||
// ----------------------------------------------------------------------
|
||||
|
||||
#ifndef G4WeightCutOffConfigurator_hh
|
||||
#define G4WeightCutOffConfigurator_hh G4WeightCutOffConfigurator_hh
|
||||
|
||||
#include "G4VSamplerConfigurator.hh"
|
||||
|
||||
#include "globals.hh"
|
||||
#include "G4ProcessPlacer.hh"
|
||||
|
||||
class G4WeightCutOffProcess;
|
||||
class G4VGCellFinder;
|
||||
class G4VIStore;
|
||||
|
||||
|
||||
class G4WeightCutOffConfigurator : public G4VSamplerConfigurator {
|
||||
public:
|
||||
G4WeightCutOffConfigurator(const G4String &particlename,
|
||||
G4double wsurvival,
|
||||
G4double wlimit,
|
||||
G4double isource,
|
||||
G4VIStore *istore,
|
||||
const G4VGCellFinder &aGCellFinder);
|
||||
|
||||
virtual ~G4WeightCutOffConfigurator();
|
||||
virtual void Configure(G4VSamplerConfigurator *preConf);
|
||||
virtual const G4VTrackTerminator *GetTrackTerminator() const ;
|
||||
|
||||
private:
|
||||
G4WeightCutOffConfigurator(const G4WeightCutOffConfigurator&);
|
||||
G4WeightCutOffConfigurator &
|
||||
operator=(const G4WeightCutOffConfigurator&);
|
||||
G4ProcessPlacer fPlacer;
|
||||
G4WeightCutOffProcess *fWeightCutOffProcess;
|
||||
G4bool fPlaced;
|
||||
};
|
||||
|
||||
|
||||
#endif
|
||||
@@ -0,0 +1,111 @@
|
||||
//
|
||||
// ********************************************************************
|
||||
// * DISCLAIMER *
|
||||
// * *
|
||||
// * The following disclaimer summarizes all the specific disclaimers *
|
||||
// * of contributors to this software. The specific disclaimers,which *
|
||||
// * govern, are listed with their locations in: *
|
||||
// * http://cern.ch/geant4/license *
|
||||
// * *
|
||||
// * 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. *
|
||||
// * *
|
||||
// * This code implementation is the intellectual property of the *
|
||||
// * GEANT4 collaboration. *
|
||||
// * By copying, distributing or modifying the Program (or any work *
|
||||
// * based on the Program) you indicate your acceptance of this *
|
||||
// * statement, and all its terms. *
|
||||
// ********************************************************************
|
||||
//
|
||||
//
|
||||
// $Id: G4WeightCutOffProcess.hh,v 1.2 2002/10/16 16:26:59 dressel Exp $
|
||||
// GEANT4 tag $Name: geant4-05-00 $
|
||||
//
|
||||
// ----------------------------------------------------------------------
|
||||
// Class G4WeightCutOffProcess
|
||||
//
|
||||
// Class description:
|
||||
//
|
||||
|
||||
// Author: Michael Dressel (Michael.Dressel@cern.ch)
|
||||
// ----------------------------------------------------------------------
|
||||
#ifndef G4WeightCutOffProcess_hh
|
||||
#define G4WeightCutOffProcess_hh G4WeightCutOffProcess_hh
|
||||
|
||||
#include "G4VProcess.hh"
|
||||
#include "G4VTrackTerminator.hh"
|
||||
#include "G4GeometryCell.hh"
|
||||
|
||||
class G4VGCellFinder;
|
||||
class G4VIStore;
|
||||
|
||||
class G4WeightCutOffProcess : public G4VProcess
|
||||
{
|
||||
|
||||
public: // with description
|
||||
|
||||
G4WeightCutOffProcess(G4double wsurvival,
|
||||
G4double wlimit,
|
||||
G4double isource,
|
||||
G4VIStore *istore,
|
||||
const G4VGCellFinder &aGCellFinder,
|
||||
const G4String &aName = "WeightCutOffProcess");
|
||||
// create a G4ParticleChange
|
||||
|
||||
virtual ~G4WeightCutOffProcess();
|
||||
// delete the G4ParticleChange
|
||||
|
||||
virtual G4double
|
||||
PostStepGetPhysicalInteractionLength(const G4Track& aTrack,
|
||||
G4double previousStepSize,
|
||||
G4ForceCondition* condition);
|
||||
// make the process beeing forced
|
||||
|
||||
virtual G4VParticleChange * PostStepDoIt(const G4Track&,
|
||||
const G4Step&);
|
||||
|
||||
|
||||
const G4String &GetName() const;
|
||||
|
||||
|
||||
public: // without description
|
||||
|
||||
// no operation in AtRestDoIt and AlongStepDoIt
|
||||
|
||||
virtual G4double
|
||||
AlongStepGetPhysicalInteractionLength(const G4Track&,
|
||||
G4double ,
|
||||
G4double ,
|
||||
G4double& ,
|
||||
G4GPILSelection*);
|
||||
|
||||
virtual G4double
|
||||
AtRestGetPhysicalInteractionLength(const G4Track& ,
|
||||
G4ForceCondition*);
|
||||
|
||||
virtual G4VParticleChange* AtRestDoIt(const G4Track&, const G4Step&);
|
||||
virtual G4VParticleChange* AlongStepDoIt(const G4Track&, const G4Step&);
|
||||
|
||||
private:
|
||||
|
||||
G4WeightCutOffProcess(const G4WeightCutOffProcess &);
|
||||
G4WeightCutOffProcess &operator=(const G4WeightCutOffProcess &);
|
||||
|
||||
G4ParticleChange *fParticleChange;
|
||||
G4double fWeightSurvival;
|
||||
G4double fWeightLimit;
|
||||
G4double fSourceImportance;
|
||||
G4VIStore *fIStore;
|
||||
const G4VGCellFinder &fGCellFinder;
|
||||
|
||||
};
|
||||
|
||||
#endif
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user