Geant4 11.3.0
Toolkit for the simulation of the passage of particles through matter
Loading...
Searching...
No Matches
G4ConvergenceTester Class Reference

#include <G4ConvergenceTester.hh>

Public Member Functions

 G4ConvergenceTester (const G4String &theName="NONAME")
 
 ~G4ConvergenceTester ()
 
 G4ConvergenceTester (G4double)
 
void AddScore (G4double)
 
G4ConvergenceTesteroperator+= (G4double val)
 
void ShowHistory (std::ostream &out=G4cout)
 
void ShowResult (std::ostream &out=G4cout)
 
G4double GetValueOfMinimizingFunction (std::vector< G4double > x)
 
void ComputeStatistics ()
 
G4double GetMean ()
 
G4double GetStandardDeviation ()
 
G4double GetVariance ()
 
G4double GetR ()
 
G4double GetEfficiency ()
 
G4double GetR2eff ()
 
G4double GetR2int ()
 
G4double GetShift ()
 
G4double GetVOV ()
 
G4double GetFOM ()
 

Detailed Description

Definition at line 54 of file G4ConvergenceTester.hh.

Constructor & Destructor Documentation

◆ G4ConvergenceTester() [1/2]

G4ConvergenceTester::G4ConvergenceTester ( const G4String & theName = "NONAME")

Definition at line 40 of file G4ConvergenceTester.cc.

41 : name(theName)
42{
43 nonzero_histories.clear();
44 largest_scores.clear();
45 largest_scores.push_back(0.0);
46
47 history_grid.resize(noBinOfHistory, 0);
48 mean_history.resize(noBinOfHistory, 0.0);
49 var_history.resize(noBinOfHistory, 0.0);
50 sd_history.resize(noBinOfHistory, 0.0);
51 r_history.resize(noBinOfHistory, 0.0);
52 vov_history.resize(noBinOfHistory, 0.0);
53 fom_history.resize(noBinOfHistory, 0.0);
54 shift_history.resize(noBinOfHistory, 0.0);
55 e_history.resize(noBinOfHistory, 0.0);
56 r2eff_history.resize(noBinOfHistory, 0.0);
57 r2int_history.resize(noBinOfHistory, 0.0);
58
59 timer = new G4Timer();
60 timer->Start();
61 cpu_time.clear();
62 cpu_time.push_back(0.0);
63}

Referenced by operator+=().

◆ ~G4ConvergenceTester()

G4ConvergenceTester::~G4ConvergenceTester ( )

Definition at line 65 of file G4ConvergenceTester.cc.

66{
67 delete timer;
68}

◆ G4ConvergenceTester() [2/2]

G4ConvergenceTester::G4ConvergenceTester ( G4double )

Member Function Documentation

◆ AddScore()

void G4ConvergenceTester::AddScore ( G4double x)

Definition at line 70 of file G4ConvergenceTester.cc.

71{
72 G4AutoLock l(&aMutex);
73
74 timer->Stop();
75 cpu_time.push_back(timer->GetSystemElapsed() + timer->GetUserElapsed());
76
77 if(x < 0.0)
78 {
79 std::ostringstream message;
80 message << "Expecting zero or positive number as inputs,\n"
81 << "but received a negative number.";
82 G4Exception("G4ConvergenceTester::AddScore()", "Warning",
83 JustWarning, message);
84 }
85
86 if(x == 0.0)
87 {
88 }
89 else
90 {
91 nonzero_histories.insert(std::pair<G4int, G4double>(n, x));
92 if(x > largest_scores.back())
93 {
94 // Following search should become faster if begin from bottom.
95 for(auto it = largest_scores.begin(); it != largest_scores.end(); ++it)
96 {
97 if(x > *it)
98 {
99 largest_scores.insert(it, x);
100 break;
101 }
102 }
103
104 if(largest_scores.size() > 201)
105 {
106 largest_scores.pop_back();
107 }
108 }
109 sum += x;
110 }
111
112 // Data has been added so statistics have now been updated to new values
113 statsAreUpdated = false;
114 ++n;
115 l.unlock();
116 return;
117}
G4TemplateAutoLock< G4Mutex > G4AutoLock
@ JustWarning
void G4Exception(const char *originOfException, const char *exceptionCode, G4ExceptionSeverity severity, const char *description)

Referenced by operator+=().

◆ ComputeStatistics()

void G4ConvergenceTester::ComputeStatistics ( )
inline

Definition at line 79 of file G4ConvergenceTester.hh.

79{ calStat(); }

◆ GetEfficiency()

G4double G4ConvergenceTester::GetEfficiency ( )
inline

Definition at line 88 of file G4ConvergenceTester.hh.

88{ CheckIsUpdated(); return efficiency; }

◆ GetFOM()

G4double G4ConvergenceTester::GetFOM ( )
inline

Definition at line 93 of file G4ConvergenceTester.hh.

93{ CheckIsUpdated(); return fom; }

◆ GetMean()

G4double G4ConvergenceTester::GetMean ( )
inline

Definition at line 84 of file G4ConvergenceTester.hh.

84{ CheckIsUpdated(); return mean; }

◆ GetR()

G4double G4ConvergenceTester::GetR ( )
inline

Definition at line 87 of file G4ConvergenceTester.hh.

87{ CheckIsUpdated(); return r; }

◆ GetR2eff()

G4double G4ConvergenceTester::GetR2eff ( )
inline

Definition at line 89 of file G4ConvergenceTester.hh.

89{ CheckIsUpdated(); return r2eff; }

◆ GetR2int()

G4double G4ConvergenceTester::GetR2int ( )
inline

Definition at line 90 of file G4ConvergenceTester.hh.

90{ CheckIsUpdated(); return r2int; }

◆ GetShift()

G4double G4ConvergenceTester::GetShift ( )
inline

Definition at line 91 of file G4ConvergenceTester.hh.

91{ CheckIsUpdated(); return shift; }

◆ GetStandardDeviation()

G4double G4ConvergenceTester::GetStandardDeviation ( )
inline

Definition at line 85 of file G4ConvergenceTester.hh.

85{ CheckIsUpdated(); return sd; }

◆ GetValueOfMinimizingFunction()

G4double G4ConvergenceTester::GetValueOfMinimizingFunction ( std::vector< G4double > x)
inline

Definition at line 74 of file G4ConvergenceTester.hh.

75 {
76 return slope_fitting_function(std::move(x));
77 }

◆ GetVariance()

G4double G4ConvergenceTester::GetVariance ( )
inline

Definition at line 86 of file G4ConvergenceTester.hh.

86{ CheckIsUpdated(); return var; }

◆ GetVOV()

G4double G4ConvergenceTester::GetVOV ( )
inline

Definition at line 92 of file G4ConvergenceTester.hh.

92{ CheckIsUpdated(); return vov; }

◆ operator+=()

G4ConvergenceTester & G4ConvergenceTester::operator+= ( G4double val)
inline

Definition at line 64 of file G4ConvergenceTester.hh.

65 {
66 this->AddScore(val);
67 return *this;
68 }

◆ ShowHistory()

void G4ConvergenceTester::ShowHistory ( std::ostream & out = G4cout)

Definition at line 473 of file G4ConvergenceTester.cc.

474{
475 if(!showHistory)
476 {
477 out << "Number of events of this run is too small to show history."
478 << G4endl;
479 return;
480 }
481
482 out << std::setprecision(6);
483
484 out << G4endl;
485 out << "G4ConvergenceTester Output History of " << name << G4endl;
486 out << "i/" << noBinOfHistory << " till_ith mean" << std::setw(13)
487 << "var" << std::setw(13) << "sd" << std::setw(13) << "r" << std::setw(13)
488 << "vov" << std::setw(13) << "fom" << std::setw(13) << "shift"
489 << std::setw(13) << "e" << std::setw(13) << "r2eff" << std::setw(13)
490 << "r2int" << G4endl;
491 for(G4int i = 1; i <= noBinOfHistory; i++)
492 {
493 out << std::setw(4) << i << " " << std::setw(5) << history_grid[i - 1]
494 << std::setw(13) << mean_history[i - 1] << std::setw(13)
495 << var_history[i - 1] << std::setw(13) << sd_history[i - 1]
496 << std::setw(13) << r_history[i - 1] << std::setw(13)
497 << vov_history[i - 1] << std::setw(13) << fom_history[i - 1]
498 << std::setw(13) << shift_history[i - 1] << std::setw(13)
499 << e_history[i - 1] << std::setw(13) << r2eff_history[i - 1]
500 << std::setw(13) << r2int_history[i - 1] << G4endl;
501 }
502}
int G4int
Definition G4Types.hh:85
#define G4endl
Definition G4ios.hh:67

◆ ShowResult()

void G4ConvergenceTester::ShowResult ( std::ostream & out = G4cout)

Definition at line 365 of file G4ConvergenceTester.cc.

366{
367 // if data has been added since the last computation of the statistical values
368 // (not statsAreUpdated) call calStat to recompute the statistical values
369 if(!statsAreUpdated)
370 {
371 calStat();
372 }
373
374 out << std::setprecision(6);
375
376 out << G4endl;
377 out << "G4ConvergenceTester Output Result of " << name << G4endl;
378 out << std::setw(20) << "EFFICIENCY = " << std::setw(13) << efficiency
379 << G4endl;
380 out << std::setw(20) << "MEAN = " << std::setw(13) << mean << G4endl;
381 out << std::setw(20) << "VAR = " << std::setw(13) << var << G4endl;
382 out << std::setw(20) << "SD = " << std::setw(13) << sd << G4endl;
383 out << std::setw(20) << "R = " << std::setw(13) << r << G4endl;
384 out << std::setw(20) << "SHIFT = " << std::setw(13) << shift << G4endl;
385 out << std::setw(20) << "VOV = " << std::setw(13) << vov << G4endl;
386 out << std::setw(20) << "FOM = " << std::setw(13) << fom << G4endl;
387
388 out << std::setw(20) << "THE LARGEST SCORE = " << std::setw(13) << largest
389 << " and it happened at " << largest_score_happened << "th event"
390 << G4endl;
391 if(mean != 0)
392 {
393 out << std::setw(20) << "Affected Mean = " << std::setw(13) << mean_1
394 << " and its ratio to original is " << mean_1 / mean << G4endl;
395 }
396 else
397 {
398 out << std::setw(20) << "Affected Mean = " << std::setw(13) << mean_1
399 << G4endl;
400 }
401 if(var != 0)
402 {
403 out << std::setw(20) << "Affected VAR = " << std::setw(13) << var_1
404 << " and its ratio to original is " << var_1 / var << G4endl;
405 }
406 else
407 {
408 out << std::setw(20) << "Affected VAR = " << std::setw(13) << var_1
409 << G4endl;
410 }
411 if(r != 0)
412 {
413 out << std::setw(20) << "Affected R = " << std::setw(13) << r_1
414 << " and its ratio to original is " << r_1 / r << G4endl;
415 }
416 else
417 {
418 out << std::setw(20) << "Affected R = " << std::setw(13) << r_1 << G4endl;
419 }
420 if(shift != 0)
421 {
422 out << std::setw(20) << "Affected SHIFT = " << std::setw(13) << shift_1
423 << " and its ratio to original is " << shift_1 / shift << G4endl;
424 }
425 else
426 {
427 out << std::setw(20) << "Affected SHIFT = " << std::setw(13) << shift_1
428 << G4endl;
429 }
430 if(fom != 0)
431 {
432 out << std::setw(20) << "Affected FOM = " << std::setw(13) << fom_1
433 << " and its ratio to original is " << fom_1 / fom << G4endl;
434 }
435 else
436 {
437 out << std::setw(20) << "Affected FOM = " << std::setw(13) << fom_1
438 << G4endl;
439 }
440
441 if(!showHistory)
442 {
443 out << "Number of events of this run is too small to do convergence tests."
444 << G4endl;
445 return;
446 }
447
448 check_stat_history(out);
449
450 // check SLOPE and output result
451 if(calcSLOPE)
452 {
453 if(slope >= 3)
454 {
455 noPass++;
456 out << "SLOPE is large enough" << G4endl;
457 }
458 else
459 {
460 out << "SLOPE is not large enough" << G4endl;
461 }
462 }
463 else
464 {
465 out << "Number of non zero history too small to calculate SLOPE" << G4endl;
466 }
467
468 out << "This result passes " << noPass << " / " << noTotal
469 << " Convergence Test." << G4endl;
470 out << G4endl;
471}

The documentation for this class was generated from the following files: