Geant4  10.03.p01
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
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 94218 2015-11-09 08:24:48Z gcosmo $
27 //
28 
29 #include <globals.hh>
35 #include <G4ExceptionSeverity.hh>
36 #include <G4Molecule.hh>
37 #include <G4ReferenceCast.hh>
38 #include <G4VDNAReactionModel.hh>
39 
41  G4VITStepModel(name),
42  fMolecularReactionTable(reference_cast<const G4DNAMolecularReactionTable*>(fpReactionTable))
43 {
46 
47  fType1 = G4Molecule::ITType();
48  fType2 = G4Molecule::ITType();
49  fReactionModel = 0;
50 }
51 
53 {
54  if(fReactionModel) delete fReactionModel;
55 }
56 
57 G4DNAMolecularStepByStepModel& G4DNAMolecularStepByStepModel::operator=(const G4DNAMolecularStepByStepModel& right)
58 {
59  G4ExceptionDescription exceptionDescription("Use copy constructor rather than assignement operator.");
60  G4Exception("G4DNAMolecularStepByStepModel::operator=(const G4DNAMolecularStepByStepModel&)",
61  "G4DNAMolecularStepByStepModel001",
63  exceptionDescription);
64 
65  if(&right == this) return *this;
66  return *this; // avoid warnings
67 }
68 
70  G4VITStepModel(right),
71  fMolecularReactionTable(reference_cast<const G4DNAMolecularReactionTable*>(fpReactionTable))
72 {
74  if(right.fReactionModel)
75  {
76  fReactionModel = right.fReactionModel->Clone();
79  }
80  else fReactionModel = 0;
81 }
82 
84 {
85  if(fpReactionTable == 0)
86  {
88  }
89 
90  if(fReactionModel == 0)
91  {
93  }
94 
96 
99 
101 }
102 
104 {
105 #ifdef G4VERBOSE
106  G4cout << "DNAMolecularStepByStepModel will be used" << G4endl;
107 #endif
108 }
const XML_Char * name
Definition: expat.h:151
virtual void Initialize()
G4VITTimeStepComputer * fpTimeStepper
std::ostringstream G4ExceptionDescription
Definition: globals.hh:76
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")
void G4Exception(const char *originOfException, const char *exceptionCode, G4ExceptionSeverity severity, const char *comments)
Definition: G4Exception.cc:41
G4VITReactionProcess * fpReactionProcess
#define G4endl
Definition: G4ios.hh:61
const G4ITReactionTable * fpReactionTable