ECCE @ EIC Software
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
G4EmExtraParameters.hh
Go to the documentation of this file. Or view the newest version in sPHENIX GitHub for file G4EmExtraParameters.hh
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 //
28 // GEANT4 Class header file
29 //
30 // File name: G4EmExtraParameters
31 //
32 // Author: Vladimir Ivanchenko
33 //
34 // Creation date: 06.05.2019
35 //
36 // Class Description:
37 //
38 // An internal utility class, responsable for keeping parameters
39 // for EM processes and models.
40 //
41 // It is initialized by the master thread but can be updated
42 // at any moment via G4EmParameters interface. It is not assumed
43 // to be used for a direct initialisation
44 //
45 // -------------------------------------------------------------------
46 //
47 
48 #ifndef G4EmExtraParameters_h
49 #define G4EmExtraParameters_h 1
50 
51 #include "globals.hh"
52 #include "G4ios.hh"
53 #include "G4ThreeVector.hh"
54 #include <vector>
55 
58 class G4VEmProcess;
60 
62 {
63 public:
64 
65  explicit G4EmExtraParameters();
66 
68 
69  void Initialise();
70 
73 
76 
79 
82 
86 
90 
91  // parameters per region or per process
92  void AddPAIModel(const G4String& particle,
93  const G4String& region,
94  const G4String& type);
95  const std::vector<G4String>& ParticlesPAI() const;
96  const std::vector<G4String>& RegionsPAI() const;
97  const std::vector<G4String>& TypesPAI() const;
98 
99  void AddPhysics(const G4String& region, const G4String& type);
100  const std::vector<G4String>& RegionsPhysics() const;
101  const std::vector<G4String>& TypesPhysics() const;
102 
103  void SetSubCutoff(G4bool val, const G4String& region = "");
104 
105  void SetProcessBiasingFactor(const G4String& procname,
106  G4double val, G4bool wflag);
107 
108  void ActivateForcedInteraction(const G4String& procname,
109  const G4String& region,
110  G4double length,
111  G4bool wflag);
112 
114  const G4String& region,
115  G4double factor,
116  G4double energyLimit);
117 
118  // initialisation methods
120  G4bool isElectron) const;
121  void DefineRegParamForEM(G4VEmProcess*) const;
122 
124  G4EmExtraParameters & operator=
125  (const G4EmExtraParameters &right) = delete;
126 
127 private:
128 
129  G4String CheckRegion(const G4String&) const;
130 
131  void PrintWarning(G4ExceptionDescription& ed) const;
132 
134 
137 
142 
145 
146  std::vector<G4String> m_particlesPAI;
147  std::vector<G4String> m_regnamesPAI;
148  std::vector<G4String> m_typesPAI;
149 
150  std::vector<G4String> m_regnamesPhys;
151  std::vector<G4String> m_typesPhys;
152 
153  std::vector<G4String> m_regnamesSubCut;
154  std::vector<G4bool> m_subCuts;
155 
156  std::vector<G4String> m_procBiasedXS;
157  std::vector<G4double> m_factBiasedXS;
158  std::vector<G4bool> m_weightBiasedXS;
159 
160  std::vector<G4String> m_procForced;
161  std::vector<G4String> m_regnamesForced;
162  std::vector<G4double> m_lengthForced;
163  std::vector<G4bool> m_weightForced;
164 
165  std::vector<G4String> m_procBiasedSec;
166  std::vector<G4String> m_regnamesBiasedSec;
167  std::vector<G4double> m_factBiasedSec;
168  std::vector<G4double> m_elimBiasedSec;
169 };
170 
171 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
172 
173 #endif