Geant4 11.4.0
Toolkit for the simulation of the passage of particles through matter
Loading...
Searching...
No Matches
G4TrialsCounter.hh
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// G4TrialsCounter
27//
28// Class description:
29//
30// Keeps statistics of the number of trials, including the Maximum
31// and how many times it was reached.
32
33// Author: John Apostolakis (CERN), 08.12.2006
34// -------------------------------------------------------------------
35#ifndef G4TRIALS_COUNTER_HH
36#define G4TRIALS_COUNTER_HH
37
38#include "G4Types.hh"
39#include "G4String.hh"
40
41/**
42 * @brief G4TrialsCounter is a class to keep statistics of the number of
43 * trials, including the maximum and how many times it was reached.
44 */
45
47{
48 public:
49
50 /**
51 * Constructor for G4TrialsCounter.
52 * @param[in] nameStats Identifier.
53 * @param[in] description Description text.
54 * @param[in] printOnExit Flag for enabling additional verbosity on exit.
55 */
56 G4TrialsCounter( const G4String& nameStats,
57 const G4String& description,
58 G4bool printOnExit = false );
59
60 /**
61 * Destructor.
62 */
64
65 /**
66 * Adds this number to stats.
67 */
68 inline void AccumulateCounts( G4int noTrials );
69
70 /**
71 * Resets all counts.
72 */
73 void ClearCounts();
74
75 /**
76 * Returns number of count/trials, calls, max & no-max.
77 */
78 G4int ReturnTotals( G4int& calls, G4int& maxTrials, G4int& numMaxT ) ;
79
80 /**
81 * Prints out statistics.
82 */
83 void PrintStatistics();
84
85 private:
86
87 /** Counts sum of trials. */
88 G4int fTotalNoTrials = 0;
89
90 /** Total number of calls to accumulate. */
91 G4int fNumberCalls = 0;
92
93 /** Max value of trials. */
94 G4int fmaxTrials = 0;
95
96 /** How many times maximum is reached. */
97 G4int fNoTimesMaxTrials = 0;
98
99 /** Identifies stats, and is printed. */
100 G4String fName;
101
102 /** Explanation of stats. */
103 G4String fDescription;
104
105 /** If verbose and not printed, print on destruction. */
106 G4bool fStatsVerbose = false;
107
108 /** Flag, to avoid reprinting on destruction. */
109 G4bool fPrinted = false;
110};
111
112#include "G4TrialsCounter.icc"
113
114#endif
bool G4bool
Definition G4Types.hh:86
int G4int
Definition G4Types.hh:85
G4TrialsCounter(const G4String &nameStats, const G4String &description, G4bool printOnExit=false)
void AccumulateCounts(G4int noTrials)
G4int ReturnTotals(G4int &calls, G4int &maxTrials, G4int &numMaxT)