Geant4 11.3.0
Toolkit for the simulation of the passage of particles through matter
Loading...
Searching...
No Matches
G4AccArray.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 arrays handled by Geant4 analysis
28//
29// Author: Ivana Hrivnacova, IJCLab IN2P3/CNRS, 18/07/2024
30
31#ifndef G4AccArray_h
32#define G4AccArray_h 1
33
34#include "G4VAccumulable.hh"
35#include "G4MergeMode.hh"
36
37#include "globals.hh"
38
39#include <array>
40
41template <class T, std::size_t N>
43{
44 public:
45 // Default constructor (1)
46 // Constructs the container with the default init value
47 G4AccArray(const G4String& name = "",
48 const T& value = 0,
50
51 // Constructor (2)
52 // Constructs the container with the provided initializer list
53 // and defaults for all other members
54 template <typename... Args>
55 G4AccArray(Args&&... args);
56
57 // // Constructor (3)
58 // // Constructs the container with the provided name and initializer list
59 // // and defaults for the other members
60 template <typename First, typename... Args>
61 G4AccArray(const First& firstArg, Args&&... args);
62
63 // Copy constructor
64 G4AccArray(const G4AccArray& rhs) = default;
65 // Move constructor
66 G4AccArray(G4AccArray&& rhs) = default;
67
68 // Destructor
69 ~G4AccArray() override = default;
70
71 // operators
72 inline T& operator[](typename std::array<T,N>::size_type i) { return fArray[i]; }
73
74 // Methods
75 void Merge(const G4VAccumulable& other) final;
76 void Reset() final;
77 void Print(G4PrintOptions options = G4PrintOptions()) const final;
78 void SetMergeMode(G4MergeMode value) final;
79
80 // Get methods
81 G4AccType GetType() const final { return G4AccType::kArray; }
82 std::array<T,N>& GetArray();
83 const std::array<T,N>& GetArray() const;
84
85 private:
86 // Data members
87 std::array<T,N> fArray {};
88 T fInitValue = 0;
89 G4MergeFunction<T> fMergeFunction;
90};
91
92// inline functions
93
94#include "G4AccArray.icc"
95
96#endif
G4AccType
Definition G4AccType.hh:38
G4MergeMode
std::function< T(const T &, const T &)> G4MergeFunction
G4AccType GetType() const final
Definition G4AccArray.hh:81
void Merge(const G4VAccumulable &other) final
~G4AccArray() override=default
G4AccArray(Args &&... args)
G4AccArray(G4AccArray &&rhs)=default
T & operator[](typename std::array< T, N >::size_type i)
Definition G4AccArray.hh:72
void SetMergeMode(G4MergeMode value) final
std::array< T, N > & GetArray()
G4AccArray(const First &firstArg, Args &&... args)
void Print(G4PrintOptions options=G4PrintOptions()) const final
G4AccArray(const G4String &name="", const T &value=0, G4MergeMode mergeMode=G4MergeMode::kAddition)
const std::array< T, N > & GetArray() const
G4AccArray(const G4AccArray &rhs)=default
void Reset() final
G4VAccumulable(G4MergeMode mergeMode=G4MergeMode::kAddition)