Geant4 11.3.0
Toolkit for the simulation of the passage of particles through matter
Loading...
Searching...
No Matches
G4AccValue.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
27// Class template for accumulable values handled by Geant4 analysis
28//
29// Author: Ivana Hrivnacova, IJCLab IN2P3/CNRS, 07/09/2015
30
31#ifndef G4AccValue_h
32#define G4AccValue_h 1
33
34#include "G4VAccumulable.hh"
35#include "G4MergeMode.hh"
36
37#include "globals.hh"
38
39template <typename T>
41{
42 public:
43 G4AccValue(const G4String& name, T initValue,
45 G4AccValue(T initValue = 0,
48 G4AccValue(G4AccValue&& rhs) noexcept;
49 ~G4AccValue() override = default;
50
51 // Operators
56 G4AccValue<T> operator++(int); // postfix increment
57 G4AccValue<T>& operator++(); // prefix increment
58
59 G4AccValue<T>& operator= (const T& rhs);
60 G4AccValue<T>& operator+=(const T& rhs);
61 G4AccValue<T>& operator*=(const T& rhs);
62
63 // Methods
64 void Merge(const G4VAccumulable& other) final;
65 void Reset() final;
66 using G4VAccumulable::Print;
67 void Print(G4PrintOptions options = G4PrintOptions()) const final;
68
69 // using G4VAccumulable::SetMergeMode;
70 void SetMergeMode(G4MergeMode value) final;
71
72 G4AccType GetType() const final { return G4AccType::kValue; }
73
74 // Get methods
75 T GetValue() const;
76
77 private:
78 // Data members
79 T fValue = 0;
80 T fInitValue = 0;
81 G4MergeFunction<T> fMergeFunction;
82 };
83
84// inline functions
85
86#include "G4AccValue.icc"
87
88#endif
G4AccType
Definition G4AccType.hh:38
G4MergeMode
std::function< T(const T &, const T &)> G4MergeFunction
~G4AccValue() override=default
G4AccValue(G4AccValue &&rhs) noexcept
void Reset() final
void SetMergeMode(G4MergeMode value) final
G4AccType GetType() const final
Definition G4AccValue.hh:72
G4AccValue< T > & operator=(G4AccValue< T > &&rhs) noexcept
G4AccValue< T > operator++(int)
G4AccValue(const G4String &name, T initValue, G4MergeMode mergeMode=G4MergeMode::kAddition)
G4AccValue< T > & operator+=(const T &rhs)
G4AccValue< T > & operator=(const G4AccValue< T > &rhs)
G4AccValue< T > & operator*=(const T &rhs)
G4AccValue(T initValue=0, G4MergeMode mergeMode=G4MergeMode::kAddition)
G4AccValue< T > & operator++()
void Print(G4PrintOptions options=G4PrintOptions()) const final
G4AccValue< T > & operator*=(const G4AccValue< T > &rhs)
G4AccValue(const G4AccValue &rhs)
T GetValue() const
void Merge(const G4VAccumulable &other) final
G4AccValue< T > & operator+=(const G4AccValue< T > &rhs)
G4VAccumulable(G4MergeMode mergeMode=G4MergeMode::kAddition)