Geant4 11.3.0
Toolkit for the simulation of the passage of particles through matter
Loading...
Searching...
No Matches
G4VAccumulable.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// Value type independent base class for accumulables handled by Geant4 analysis
28//
29// Author: Ivana Hrivnacova, IJCLab IN2P3/CNRS, 04/09/2015
30
31#ifndef G4VAccumulable_h
32#define G4VAccumulable_h 1
33
34#include "G4AccType.hh"
35#include "G4MergeMode.hh"
36
37#include "globals.hh"
38
40{
41 public:
45 G4VAccumulable(const G4VAccumulable& rhs) = default;
47 virtual ~G4VAccumulable() = default;
48
49 // Operators
50 G4VAccumulable& operator=(const G4VAccumulable& rhs) = default;
52
53 // Methods
54 virtual void Merge(const G4VAccumulable& other) = 0;
55 virtual void Reset() = 0;
56 virtual void Print(G4PrintOptions options = G4PrintOptions()) const;
57 virtual void SetMergeMode(G4MergeMode value);
58
59 // Set methods
60 void SetName(const G4String& name);
61 void SetId(G4int id);
62
63 // Get methods
66 G4int GetId() const;
67
68 virtual G4AccType GetType() const { return G4AccType::kUser; }
69
70 protected:
71 void PrintBase(G4PrintOptions options) const;
72
76 };
77
78#include "G4VAccumulable.icc"
79
80#endif
81
G4AccType
Definition G4AccType.hh:38
G4MergeMode
int G4int
Definition G4Types.hh:85
G4int GetId() const
void SetName(const G4String &name)
virtual void SetMergeMode(G4MergeMode value)
G4MergeMode GetMergeMode() const
virtual ~G4VAccumulable()=default
G4MergeMode fMergeMode
G4VAccumulable(const G4VAccumulable &rhs)=default
void PrintBase(G4PrintOptions options) const
G4String GetName() const
G4VAccumulable(G4VAccumulable &&rhs)=default
virtual G4AccType GetType() const
G4VAccumulable(const G4String &name, G4MergeMode mergeMode=G4MergeMode::kAddition)
G4VAccumulable & operator=(const G4VAccumulable &rhs)=default
virtual void Print(G4PrintOptions options=G4PrintOptions()) const
virtual void Merge(const G4VAccumulable &other)=0
void SetId(G4int id)
virtual void Reset()=0
G4VAccumulable & operator=(G4VAccumulable &&rhs)=default
G4VAccumulable(G4MergeMode mergeMode=G4MergeMode::kAddition)
constexpr G4int kInvalidId
Definition G4AccType.hh:90