Geant4 9.6.0
Toolkit for the simulation of the passage of particles through matter
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros
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
32size_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{
52}
53
55{;}
56
58{
59 //dtor
60 // As the owner, G4IT should delete fProcessState
61}
62
63G4VITProcess::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}
@ EventMustBeAborted
G4IT * GetIT(const G4Track *track)
Definition: G4IT.cc:48
G4ProcessType
double G4double
Definition: G4Types.hh:64
#define G4endl
Definition: G4ios.hh:52
G4DLLIMPORT std::ostream G4cerr
G4TrackingInformation * GetTrackingInfo()
Definition: G4IT.hh:134
void RecordProcessState(G4ProcessState_Lock *, size_t index)
virtual void StartTracking(G4Track *)
Definition: G4VITProcess.cc:81
void SetInstantiateProcessState(G4bool flag)
virtual void SubtractNumberOfInteractionLengthLeft(G4double previousStepSize)
Definition: G4VITProcess.cc:96
G4ProcessState * fpState
G4VITProcess & operator=(const G4VITProcess &other)
Definition: G4VITProcess.cc:74
G4VITProcess(const G4String &name, G4ProcessType type=fNotDefined)
Definition: G4VITProcess.cc:34
G4bool InstantiateProcessState()
G4bool fProposesTimeStep
virtual ~G4VITProcess()
Definition: G4VITProcess.cc:57
G4int verboseLevel
Definition: G4VProcess.hh:368
G4String theProcessName
Definition: G4VProcess.hh:335
void G4Exception(const char *originOfException, const char *exceptionCode, G4ExceptionSeverity severity, const char *comments)
Definition: G4Exception.cc:41