Geant4 11.3.0
Toolkit for the simulation of the passage of particles through matter
Loading...
Searching...
No Matches
G4AccType.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// Author: Ivana Hrivnacova, IJCLab IN2P3/CNRS, 25/07/2024
28
29#ifndef G4AccType_h
30#define G4AccType_h 1
31
32#include "globals.hh"
33
34#include <bitset>
35
36// Enumeration for definition available accummulables
37
38enum class G4AccType {
39 kValue, // G4AccValue<T>
40 kArray, // G4AccArray<T>
41 kMap, // G4AccMap<T>
42 kUnorderedMap, // G4AccUnorderedMap<T>
43 kVector, // G4AccumulableVector<T>
44 kUser // User type
45};
46
47// TODO: add G4String GetTypeName(G4AccType)
48
49// Helper class for printing
50//
52 public:
53 enum Option : std::size_t {
54 kName = 0,
55 kType = 1,
56 kId = 2
57 };
58
60 SetDefaults();
61 }
62 G4PrintOptions(std::initializer_list<Option> options) {
63 SetDefaults();
64 for (const Option& option : options) {
65 fValue.set(option);
66 }
67 }
68 ~G4PrintOptions() = default;
69
70 void Set(Option option, bool value = true) { fValue.set(option, value); }
71 bool Has(Option option) const { return fValue[option]; }
72
73 private:
74 // methods
75 void SetDefaults() {
76 fValue.set(kName);
77 fValue.set(kType);
78 }
79
80 // data members
81 static constexpr std::size_t kMax = G4PrintOptions::kId + 1;
82 std::bitset<kMax> fValue{0};
83};
84
86{
87
88// Constant expressions
89//
90constexpr G4int kInvalidId { -1 };
91
92// Verbose level
93//
94[[maybe_unused]] static G4int VerboseLevel {1};
95
96}
97
98#endif
G4AccType
Definition G4AccType.hh:38
@ kUnorderedMap
Definition G4AccType.hh:42
int G4int
Definition G4Types.hh:85
bool Has(Option option) const
Definition G4AccType.hh:71
~G4PrintOptions()=default
void Set(Option option, bool value=true)
Definition G4AccType.hh:70
G4PrintOptions(std::initializer_list< Option > options)
Definition G4AccType.hh:62
constexpr G4int kInvalidId
Definition G4AccType.hh:90