Geant4.10
 All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
G4DNAMolecularDissociation.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: G4DNAMolecularDissociation.hh 74551 2013-10-14 12:59:14Z 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 
45 class G4ParticleChange;
48 
49 /**
50  * G4DNAMolecularDissociation 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 {
58 public:
59  G4DNAMolecularDissociation(const G4String& processName = "DNAMolecularDecay",
60  G4ProcessType type = fDecay);
61 
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 
83 protected:
84  //__________________________________________________________________
85  // Make the decay
86  virtual G4VParticleChange* DecayIt(const G4Track& ,const G4Step&);
88 
89 private:
93 
94 private:
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 */
G4double condition(const G4ErrorSymMatrix &m)
#define G4IT_ADD_CLONE(parent_class, kid_class)
Definition: AddClone_def.hh:45
virtual G4double GetMeanLifeTime(const G4Track &, G4ForceCondition *)
virtual void ClearNumberOfInteractionLengthLeft()
G4VMolecularDecayDisplacer * GetDecayDisplacer(const G4ParticleDefinition *)
G4double AtRestGetPhysicalInteractionLength(const G4Track &track, G4ForceCondition *condition)
int G4int
Definition: G4Types.hh:78
Identical to G4VRestProcess with dependency from G4VITProcess.
virtual void ClearInteractionTimeLeft()
G4VParticleChange * AtRestDoIt(const G4Track &track, const G4Step &step)
virtual G4double AtRestGetPhysicalInteractionLength(const G4Track &track, G4ForceCondition *condition)
bool G4bool
Definition: G4Types.hh:79
virtual G4VParticleChange * DecayIt(const G4Track &, const G4Step &)
Definition: G4Step.hh:76
void SetDecayDisplacer(const G4ParticleDefinition *, G4VMolecularDecayDisplacer *)
double G4double
Definition: G4Types.hh:76
G4ForceCondition
virtual G4bool IsApplicable(const G4ParticleDefinition &)
G4ProcessType