ECCE @ EIC Software
Reference for
ECCE @ EIC
simulation and reconstruction software on GitHub
Home page
Related Pages
Modules
Namespaces
Classes
Files
External Links
File List
File Members
All
Classes
Namespaces
Files
Functions
Variables
Typedefs
Enumerations
Enumerator
Friends
Macros
Groups
Pages
ML2Convergence.cc
Go to the documentation of this file.
Or view
the newest version in sPHENIX GitHub for file ML2Convergence.cc
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
// The code was written by :
27
// ^Claudio Andenna claudio.andenna@ispesl.it, claudio.andenna@iss.infn.it
28
// *Barbara Caccia barbara.caccia@iss.it
29
// with the support of Pablo Cirrone (LNS, INFN Catania Italy)
30
// with the contribute of Alessandro Occhigrossi*
31
//
32
// ^INAIL DIPIA - ex ISPESL and INFN Roma, gruppo collegato Sanità, Italy
33
// *Istituto Superiore di Sanità and INFN Roma, gruppo collegato Sanità, Italy
34
// Viale Regina Elena 299, 00161 Roma (Italy)
35
// tel (39) 06 49902246
36
// fax (39) 06 49387075
37
//
38
// more information:
39
// http://g4advancedexamples.lngs.infn.it/Examples/medical-linac
40
//
41
//*******************************************************//
42
43
44
#include "
ML2Convergence.hh
"
45
46
CML2Convergence::CML2Convergence
(
void
)
47
{}
48
49
CML2Convergence::CML2Convergence
(
G4int
seed
,
G4int
saveEvents,
50
G4String
FileExperimentalData,
G4String
FileExperimentalDataOut,
51
G4bool
bComp,
G4int
maxNumEvents,
G4int
nRecycling,
G4int
maxLoops)
52
:ML2ExpVoxels(0)
53
{
54
nGeometry
= 0;
55
nMaxLoops
= maxLoops;
56
idCurrentLoop
=
nMaxLoops
;
57
bCompareExp
= bComp;
58
nAccumulatedEvents
= 0;
59
if
(
bCompareExp
){
nMaxLoops
=-1;};
60
fileExperimentalData
= FileExperimentalData;
61
62
// if the flag compareExp if true and the experimental data is given, create the class CML2ExpVoxels
63
if
(
bCompareExp
&&
fileExperimentalData
!=
""
)
64
{
65
ML2ExpVoxels
=
new
CML2ExpVoxels
(
bCompareExp
, saveEvents, seed, FileExperimentalData, FileExperimentalDataOut);
66
if
(!
ML2ExpVoxels
->
loadData
())
67
{
68
nMaxLoops
=10;
69
ML2ExpVoxels
=0;
70
G4cout
<<
"I don't have any convergence criteria set, I'll do "
<<
nMaxLoops
<<
" loop(s) for each rotation"
<<
G4endl
;
71
}
72
else
73
{
74
ML2ExpVoxels
->
setRecycling
(nRecycling);
75
}
76
}
77
maxNumberOfEvents
=maxNumEvents;
78
}
79
80
CML2Convergence::~CML2Convergence
(
void
)
81
{
82
if
(
ML2ExpVoxels
!=0)
83
{
delete
ML2ExpVoxels
;}
84
85
}
86
void
CML2Convergence::add
(
const
G4Step
* aStep)
87
{
88
// accumulate events in the CML2ExpVoxels class (if created)
89
if
(
ML2ExpVoxels
!=0)
90
{
91
if
(aStep->
GetTotalEnergyDeposit
()>0.)
92
{
ML2ExpVoxels
->
add
(aStep);}
93
}
94
}
95
G4bool
CML2Convergence::stopRun
()
96
{
97
G4bool
bStopRun=
false
;
98
if
(
ML2ExpVoxels
!=0)
// true if the experimental data file exists and is used to check the convergence
99
{
100
bStopRun=
convergenceCriteria
();
101
return
bStopRun;
102
}
103
else
// true if no experiemental data file is used. In this case it runs "nMaxLoops" loops.
104
{
105
idCurrentLoop
--;
106
if
(
idCurrentLoop
==0)
107
{
108
bStopRun=
true
;
109
}
110
}
111
return
bStopRun;
112
}
113
G4bool
CML2Convergence::convergenceCriteria
()
114
{
115
G4bool
bStopRun=
true
;
116
G4int
nEventsAccumulated=0;
117
if
(
bCompareExp
)
118
{
119
nEventsAccumulated=
ML2ExpVoxels
->
getMaxNumberOfEvents
();
120
// It checks if the maximum number of events is reached at least in one voxel. Having more rotations the limits is incremented each rotation
121
if
(
ML2ExpVoxels
->
getMaxNumberOfEvents
()>=
maxNumberOfEvents
)
122
{bStopRun =
true
;
ML2ExpVoxels
->
resetNEventsInVoxels
();}
123
else
124
{bStopRun =
false
;}
125
}
126
G4cout
<<
"\n ++++++++++++++++++++ "
<<
G4endl
;
127
G4cout
<<
"current geometry: "
<<
nGeometry
;
128
G4cout
<<
"\nNumber of events accumulated in the current geometry:"
<<
129
nEventsAccumulated<<
"\nNumber of events to be accumulated:"
<<
130
maxNumberOfEvents
<<
"\n -------------------------\n"
<<
G4endl
;
131
return
bStopRun;
132
}
geant4
tree
geant4-10.6-release
examples
advanced
medical_linac
src
ML2Convergence.cc
Built by
Jin Huang
. updated:
Wed Jun 29 2022 17:25:00
using
1.8.2 with
ECCE GitHub integration