Geant4-11
G4DNAScavengerProcess.hh
Go to the documentation of this file.
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#ifndef G4DNASCAVENGERPROCESS_HH
28#define G4DNASCAVENGERPROCESS_HH
29
30#include "G4VITProcess.hh"
36{
37 public:
40 explicit G4DNAScavengerProcess(const G4String& aName,
41 const G4DNABoundingBox& box,
42 G4ProcessType type = fDecay);
43 ~G4DNAScavengerProcess() override;
46 void StartTracking(G4Track*) override;
47 void SetReaction(MolType, Data* pData);
48
49 public:
50 void BuildPhysicsTable(const G4ParticleDefinition&) override;
51
53 const G4Track& track, G4double previousStepSize,
54 G4ForceCondition* condition) override;
55
56 G4VParticleChange* PostStepDoIt(const G4Track&, const G4Step&) override;
57
59 G4ForceCondition*) override
60 {
61 return -1.0;
62 }
63
64 G4VParticleChange* AtRestDoIt(const G4Track&, const G4Step&) override
65 {
66 return nullptr;
67 }
68
69 // no operation in AlongStepDoIt
72 G4GPILSelection*) override
73 {
74 return -1.0;
75 }
76
77 // no operation in AlongStepDoIt
79 {
80 return nullptr;
81 }
82
83 protected:
85 {
90 };
91
92 protected:
97 std::map<MolType /*MolConf*/, std::map<MolType /*molConfMat*/, Data*>>
99 std::vector<MolType> fpMaterialVector;
104};
105#endif // FLASH1_G4DNASCAVENGERPROCESS_HH
G4double condition(const G4ErrorSymMatrix &m)
G4ForceCondition
G4GPILSelection
G4ProcessType
@ fDecay
double G4double
Definition: G4Types.hh:83
bool G4bool
Definition: G4Types.hh:86
int G4int
Definition: G4Types.hh:85
G4VParticleChange * PostStepDoIt(const G4Track &, const G4Step &) override
void StartTracking(G4Track *) override
std::map< MolType, std::map< MolType, Data * > > fConfMap
G4VParticleChange * AlongStepDoIt(const G4Track &, const G4Step &) override
G4DNAScavengerProcess(const G4String &aName, const G4DNABoundingBox &box, G4ProcessType type=fDecay)
const G4DNABoundingBox * fpBoundingBox
const G4MolecularConfiguration * fpMolecularConfiguration
G4double AlongStepGetPhysicalInteractionLength(const G4Track &, G4double, G4double, G4double &, G4GPILSelection *) override
G4double PostStepGetPhysicalInteractionLength(const G4Track &track, G4double previousStepSize, G4ForceCondition *condition) override
std::vector< MolType > fpMaterialVector
G4DNAScavengerMaterial * fpScavengerMaterial
void BuildPhysicsTable(const G4ParticleDefinition &) override
G4DNAScavengerProcess(const G4DNAScavengerProcess &)=delete
G4DNAScavengerProcess & operator=(const G4DNAScavengerProcess &)=delete
G4double AtRestGetPhysicalInteractionLength(const G4Track &, G4ForceCondition *) override
void SetReaction(MolType, Data *pData)
G4ParticleChange fParticleChange
G4VParticleChange * AtRestDoIt(const G4Track &, const G4Step &) override
Definition: G4Step.hh:62