Geant4  10.01.p02
G4DNAMolecularStepByStepModel.cc
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: G4DNAMolecularStepByStepModel.cc 81769 2014-06-05 08:30:21Z gcosmo $
27 //
29 #include "G4VDNAReactionModel.hh"
31 
33  G4VITStepModel(name),
34  fMolecularReactionTable(reference_cast<const G4DNAMolecularReactionTable*>(fpReactionTable))
35 {
38 
39  fType1 = G4Molecule::ITType();
40  fType2 = G4Molecule::ITType();
41  fReactionModel = 0;
42 }
43 
45 {
46  if(fReactionModel) delete fReactionModel;
47 }
48 
50 {
51  G4ExceptionDescription exceptionDescription
52  ("Use copy constructor rather than assignement operator.");
53  G4Exception("G4DNAMolecularStepByStepModel::operator=(const G4DNAMolecularStepByStepModel&)","G4DNAMolecularStepByStepModel001",
54  FatalErrorInArgument,exceptionDescription);
55 
56  if (&right==this) return *this;
57  return *this; // avoid warnings
58 }
59 
60 
62  G4VITStepModel(right),
63  fMolecularReactionTable(reference_cast<const G4DNAMolecularReactionTable*>(fpReactionTable))
64 {
66  if(right.fReactionModel)
67  {
68  fReactionModel = right.fReactionModel->Clone();
71  }
72  else fReactionModel = 0;
73 }
74 
76 {
77  if(fpReactionTable == 0)
78  {
80  }
81 
82  if(fReactionModel == 0)
83  {
85  }
86 
88 
91 
93 }
94 
96 {
97 #ifdef G4VERBOSE
98  G4cout << "DNAMolecularStepByStepModel will be used" << G4endl;
99 #endif
100 }
virtual void Initialize()
G4VITTimeStepComputer * fpTimeStepper
std::ostringstream G4ExceptionDescription
Definition: globals.hh:76
G4DNASmoluchowskiReactionModel should be used for very fast reactions (high reaction rate) : the reac...
G4String name
Definition: TRTMaterials.hh:40
Define what to do before stepping and after stepping.
G4DNAMolecularReactionTable sorts out the G4DNAMolecularReactionData for bimolecular reaction...
ReturnType & reference_cast(OriginalType &source)
void SetReactionTable(G4ITReactionTable *)
static G4DNAMolecularReactionTable * GetReactionTable()
G4GLOB_DLL std::ostream G4cout
void SetReactionTable(const G4DNAMolecularReactionTable *)
G4DNAMolecularStepByStepModel(const G4String &name="DNAMolecularStepByStepModel")
Default constructor.
virtual ~G4DNAMolecularStepByStepModel()
Default destructor.
void G4Exception(const char *originOfException, const char *exceptionCode, G4ExceptionSeverity severity, const char *comments)
Definition: G4Exception.cc:41
Given a molecule G4DNAMoleculeEncounterStepper will calculate for its possible reactants what will be...
G4DNAMolecularReaction is the reaction process used in G4DNAMolecularStepByStepModel between two mole...
G4VITReactionProcess * fpReactionProcess
G4DNAMolecularStepByStepModel & operator=(const G4DNAMolecularStepByStepModel &)
Assignment operator.
G4DNAMolecularStepByStepModel :
#define G4endl
Definition: G4ios.hh:61
void SetReactionModel(G4VDNAReactionModel *)
const G4ITReactionTable * fpReactionTable