Geant4  9.6.p02
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
G4VITProcess.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: G4VITProcess.cc 64057 2012-10-30 15:04:49Z gcosmo $
27 //
28 #include "G4VITProcess.hh"
29 #include "G4SystemOfUnits.hh"
30 #include "G4IT.hh"
31 
32 size_t G4VITProcess::fNbProcess = 0;
33 
35  G4VProcess( name, type ),
36  fpState (0),
37  fProcessID(fNbProcess)
38 {
39  fNbProcess++;
41  currentInteractionLength = 0;
42  theInteractionTimeLeft = 0;
43  theNumberOfInteractionLengthLeft = 0;
44  fProposesTimeStep = false;
45 }
46 
48 {
50  theInteractionTimeLeft = -1.0 ;
52 }
53 
55 {;}
56 
58 {
59  //dtor
60  // As the owner, G4IT should delete fProcessState
61 }
62 
63 G4VITProcess::G4VITProcess(const G4VITProcess& other) : G4VProcess(other), fProcessID(other.fProcessID)
64 {
65  //copy ctor
66  fpState = 0 ;
67  currentInteractionLength = 0;
68  theInteractionTimeLeft = 0;
69  theNumberOfInteractionLengthLeft = 0;
70  fInstantiateProcessState = other.fInstantiateProcessState;
72 }
73 
75 {
76  if (this == &rhs) return *this; // handle self assignment
77  //assignment operator
78  return *this;
79 }
80 
82 {
83  G4TrackingInformation* trackingInfo = GetIT(track)->GetTrackingInfo();
85  {
86  fpState = new G4ProcessState();
87  }
88 
89  theNumberOfInteractionLengthLeft = &(fpState->theNumberOfInteractionLengthLeft );
90  theInteractionTimeLeft = &(fpState->theInteractionTimeLeft );
91  currentInteractionLength = &(fpState->currentInteractionLength );
92  trackingInfo->RecordProcessState(fpState,fProcessID);
93  fpState = 0;
94 }
95 
97  G4double previousStepSize )
98 {
103  }
104 
105  } else {
106 #ifdef G4VERBOSE
107  if (verboseLevel>0) {
108  G4cerr << "G4VProcess::SubtractNumberOfInteractionLengthLeft()";
109  G4cerr << " [" << theProcessName << "]" <<G4endl;
110  G4cerr << " currentInteractionLength = " << *currentInteractionLength/cm << " [cm]";
111  G4cerr << " previousStepSize = " << previousStepSize/cm << " [cm]";
112  G4cerr << G4endl;
113  }
114 #endif
115  G4Exception("G4VProcess::SubtractNumberOfInteractionLengthLeft()",
116  "Negative currentInteractionLength",EventMustBeAborted,theProcessName);
117  }
118 }