Geant4 9.6.0
Toolkit for the simulation of the passage of particles through matter
Loading...
Searching...
No Matches
G4DNAMolecularDecay.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// $Id: G4DNAMolecularDecay.hh 65022 2012-11-12 16:43:12Z gcosmo $
27//
28// Author: Mathieu Karamitros (kara (AT) cenbg . in2p3 . fr)
29//
30// WARNING : This class is released as a prototype.
31// It might strongly evolve or even disapear in the next releases.
32//
33// History:
34// -----------
35// 10 Oct 2011 M.Karamitros created
36//
37// -------------------------------------------------------------------
38
39#ifndef G4MOLECULARDECAYPROCESS_HH
40#define G4MOLECULARDECAYPROCESS_HH
41
42#include "G4VITRestProcess.hh"
43#include <map>
44
48
49/**
50 * G4DNAMolecularDecay should be called only for molecules.
51 * It will dissociate the molecules using the decay associated to
52 * this molecule and if a displacement scheme has been registered,
53 * it will place the products to the expected position.
54 */
55
57{
58public:
59 G4DNAMolecularDecay(const G4String& processName = "DNAMolecularDecay",
60 G4ProcessType type = fDecay);
61
62 virtual ~G4DNAMolecularDecay();
63
65
67
69 const G4Track& track,
71 );
73 const G4Track& track,
74 const G4Step& step
75 );
76
77 inline void SetVerbose(G4int);
78
79 //__________________________________________________________________
82
83protected:
84 //__________________________________________________________________
85 // Make the decay
86 virtual G4VParticleChange* DecayIt(const G4Track& ,const G4Step&);
88
89private:
92 G4DNAMolecularDecay & operator=(const G4DNAMolecularDecay &right);
93
94private:
95 G4bool fDecayAtFixedTime ;
96
97 typedef std::map<const G4ParticleDefinition*, G4VMolecularDecayDisplacer*> DecayDisplacementMap;
98 DecayDisplacementMap fDecayDisplacementMap;
99
100 G4int fVerbose;
101};
102
104{
105 fVerbose = verbose ;
106}
107
109 const G4Track& track,
111{
112 if(fDecayAtFixedTime)
113 {
114 return GetMeanLifeTime(track, condition);
115 }
116
118}
119
121 const G4Track& track,
122 const G4Step& step
123 )
124{
127 return DecayIt(track, step);
128}
129
130
131#endif /* G4MOLECULARDECAYPROCESS_HH */
#define G4IT_ADD_CLONE(parent_class, kid_class)
Definition: AddClone_def.hh:45
G4double condition(const G4ErrorSymMatrix &m)
G4ForceCondition
G4ProcessType
@ fDecay
double G4double
Definition: G4Types.hh:64
int G4int
Definition: G4Types.hh:66
bool G4bool
Definition: G4Types.hh:67
virtual G4double GetMeanLifeTime(const G4Track &, G4ForceCondition *)
void SetDecayDisplacer(const G4ParticleDefinition *, G4VMolecularDecayDisplacer *)
G4VMolecularDecayDisplacer * GetDecayDisplacer(const G4ParticleDefinition *)
virtual G4VParticleChange * DecayIt(const G4Track &, const G4Step &)
G4double AtRestGetPhysicalInteractionLength(const G4Track &track, G4ForceCondition *condition)
G4VParticleChange * AtRestDoIt(const G4Track &track, const G4Step &step)
virtual G4bool IsApplicable(const G4ParticleDefinition &)
Definition: G4Step.hh:78
virtual void ClearInteractionTimeLeft()
virtual void ClearNumberOfInteractionLengthLeft()
Identical to G4VRestProcess with dependency from G4VITProcess.
virtual G4double AtRestGetPhysicalInteractionLength(const G4Track &track, G4ForceCondition *condition)