Geant4  10.02.p01
TimeStepAction.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 // This example is provided by the Geant4-DNA collaboration
27 // Any report or published results obtained using the Geant4-DNA software
28 // shall cite the following Geant4-DNA collaboration publication:
29 // Med. Phys. 37 (2010) 4692-4708
30 // J. Comput. Phys. 274 (2014) 841-882
31 // The Geant4-DNA web site is available at http://geant4-dna.org
32 //
33 // $Id$
34 //
37 
38 #include "TimeStepAction.hh"
39 #include "G4UnitsTable.hh"
40 #include "G4SystemOfUnits.hh"
41 //#include "G4ITScheduler.hh"
42 //#include "G4Molecule.hh"
43 
44 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
45 
48 {
62  AddTimeStep(1 * picosecond, 0.1 * picosecond);
64  AddTimeStep(100 * picosecond, 3 * picosecond);
65  AddTimeStep(1000 * picosecond, 10 * picosecond);
66  AddTimeStep(10000 * picosecond, 100 * picosecond);
67 }
68 
69 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
70 
72 {
73 }
74 
75 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
76 
79 {
80 }
81 
82 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
85 {
86  if (this == &rhs) return *this; // handle self assignment
87  //assignment operator
88  return *this;
89 }
90 
91 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
92 
94 {
95 // You want to know why the simulation stopped ?
96 // G4ITScheduler::Instance()->WhyDoYouStop();
97 // At the end of the simulation, information will be printed
98 // It is better to place this command before the simulation starts
99 }
100 
101 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
102 
104 {
105 }
106 
107 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
108 
110 {
111 }
112 
113 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
114 
115 
116 // Here you can retrieve information related to reactions
117 void
119  const G4Track&,
120  const std::vector<G4Track*>* /*products*/)
121 {
122  /*
123  for (int i = 0 ; i < nbProducts ; i ++)
124  {
125  G4cout << "Product[" << i << "] : "
126  << GetMolecule(products[i])->GetName()
127  << G4endl ;
128  }
129  */
130 }
131 
133 {
134 }
TimeStepAction & operator=(const TimeStepAction &other)
virtual ~TimeStepAction()
virtual void UserReactionAction(const G4Track &, const G4Track &, const std::vector< G4Track * > *)
Inform about a reaction.
G4UserTimeStepAction is used by G4Scheduler.
virtual void StartProcessing()
virtual void UserPreTimeStepAction()
In this method, the user can use : G4Scheduler::Instance()->GetGlobalTime(), to know the current simu...
virtual void UserPostTimeStepAction()
void AddTimeStep(double, double)
static const double picosecond
Definition: G4SIunits.hh:160
virtual void EndProcessing()