119 lines
4.1 KiB
C++
119 lines
4.1 KiB
C++
//
|
|
// ********************************************************************
|
|
// * 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
|