Geant4 11.4.0
Toolkit for the simulation of the passage of particles through matter
Loading...
Searching...
No Matches
G4CrossSectionFactory.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#ifndef G4CrossSectionFactory_h
27#define G4CrossSectionFactory_h 1
28
29
30#include "globals.hh"
33#include "G4Threading.hh"
34
51
52//Generic template XS-factory
53template <typename T, int mode> class G4CrossSectionFactory : public G4VBaseXSFactory
54{
55public:
57 {
58 fRegistry->Register(name, this);
59 }
60
62 {
64 msg<<"Factory mode: "<<mode<<" not supported!";
65 G4Exception("G4CrossSectionFactory::Instantiate","CrossSectionFactory001",FatalException,msg);
66 return static_cast<T*>(0);
67 }
68};
69
70//Partial specialized template for non-singleton non-shared factory
71// each call to Instantiate creates a new XS
72template <typename T> class G4CrossSectionFactory<T,0> : public G4VBaseXSFactory
73{
74public:
75
77 {
78 fRegistry->Register(name, this);
79 }
80
82 {
83 return new T();
84 }
85};
86
87//Partial specialized template for singleton, shared factory
88// each call to Instantiate returns pointer to static object
89template <typename T> class G4CrossSectionFactory<T,1> : public G4VBaseXSFactory
90{
91public:
93 {
94 fRegistry->Register(name,this);
95 }
96
98 {
99 static T* shared = new T();
100 return shared;
101 }
102};
103
104//Partial specialized template for singleton, shared factory
105// each call to Instantiate returns pointer to static thread-local object
106template <typename T> class G4CrossSectionFactory<T,2> : public G4VBaseXSFactory
107{
109 {
110 fRegistry->Register(name,this);
111 }
112
114 {
115 static G4ThreadLocal T* shared = new T();
116 return shared;
117 }
118};
119
120
121#define G4_BASE_DECLARE_XS_FACTORY(cross_section, flag) \
122 const G4CrossSectionFactory<cross_section,flag>& cross_section##Factory = G4CrossSectionFactory<cross_section,flag>(cross_section::Default_Name())
123
124#define G4_BASE_REFERENCE_XS_FACTORY(cross_section,flag) \
125 class cross_section; \
126 extern const G4CrossSectionFactory<cross_section,flag>& cross_section##Factory; \
127 const G4CrossSectionFactory<cross_section,flag>& cross_section##FactoryRef = cross_section##Factory
128
129//Macros to help define and reference factories
130#define G4_DECLARE_XS_FACTORY(cross_section) G4_BASE_DECLARE_XS_FACTORY(cross_section,0)
131#define G4_DECLARE_SHAREDXS_FACTORY(cross_section) G4_BASE_DECLARE_XS_FACTORY(cross_section,1)
132#define G4_DECLARE_SHAREDTLSXS_FACTORY(cross_section) G4_BASE_DECLARE_XS_FACTORY(cross_section,2)
133
134
135#define G4_REFERENCE_XS_FACTORY(cross_section) G4_BASE_REFERENCE_XS_FACTORY(cross_section,0)
136#define G4_REFERENCE_SHAREDXS_FACTORY(cross_section) G4_BASE_REFERENCE_XS_FACTORY(cross_section,1)
137#define G4_REFERENCE_SHAREDTLSXS_FACTORY(cross_section) G4_BASE_REFERENCE_XS_FACTORY(cross_section,2)
138
139#endif
@ FatalException
void G4Exception(const char *originOfException, const char *exceptionCode, G4ExceptionSeverity severity, const char *description)
std::ostringstream G4ExceptionDescription
static G4CrossSectionFactoryRegistry * Instance()
G4VCrossSectionDataSet * Instantiate() override
G4CrossSectionFactory(const G4String &name)
G4CrossSectionFactory(const G4String &name)
G4VCrossSectionDataSet * Instantiate() override
G4VCrossSectionDataSet * Instantiate() override
G4CrossSectionFactory(const G4String &name)
G4CrossSectionFactoryRegistry * fRegistry
virtual G4VCrossSectionDataSet * Instantiate()=0
virtual ~G4VBaseXSFactory()=default
#define G4ThreadLocal
Definition tls.hh:77