ECCE @ EIC Software
Reference for
ECCE @ EIC
simulation and reconstruction software on GitHub
Home page
Related Pages
Modules
Namespaces
Classes
Files
External Links
File List
File Members
All
Classes
Namespaces
Files
Functions
Variables
Typedefs
Enumerations
Enumerator
Friends
Macros
Groups
Pages
G4DNAModelInterface.hh
Go to the documentation of this file.
Or view
the newest version in sPHENIX GitHub for file G4DNAModelInterface.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
// Contact authors: S. Meylan, C. Villagrasa
28
//
29
// email: sylvain.meylan@symalgo-tech.com, carmen.villagrasa@irsn.fr
30
31
#ifndef G4DNAMODELINTERFACE_HH
32
#define G4DNAMODELINTERFACE_HH
33
34
#include <map>
35
#include "
G4DNACrossSectionDataSet.hh
"
36
#include "
G4VEmModel.hh
"
37
#include "
G4VDNAModel.hh
"
38
#include "
G4Electron.hh
"
39
#include "
G4ParticleChangeForGamma.hh
"
40
#include "
G4LogLogInterpolation.hh
"
41
#include "
G4ProductionCutsTable.hh
"
42
#include "
G4NistManager.hh
"
43
#include "
G4DNADummyModel.hh
"
44
45
class
G4DNAModelInterface
:
public
G4VEmModel
46
{
47
48
public
:
49
55
G4DNAModelInterface
(
const
G4String
& nam);
56
61
virtual
~G4DNAModelInterface
();
62
69
virtual
void
Initialise
(
const
G4ParticleDefinition
*
particle
,
const
G4DataVector
& cuts);
70
83
virtual
G4double
CrossSectionPerVolume
(
const
G4Material
*
material
,
84
const
G4ParticleDefinition
*
p
,
85
G4double
ekin,
86
G4double
emin
,
87
G4double
emax
);
88
99
virtual
void
SampleSecondaries
(std::vector<G4DynamicParticle*>*fVect,
100
const
G4MaterialCutsCouple
* couple,
101
const
G4DynamicParticle
* aDynamicElectron,
102
G4double
tmin,
103
G4double
tmax);
104
110
void
RegisterModel
(
G4VDNAModel
*
model
);
111
112
void
RegisterModel
(
G4VEmModel
* model,
const
G4ParticleDefinition
* particle);
113
119
G4String
GetSelectedMaterial
(){
return
fSampledMat
;}
120
121
private
:
122
123
const
G4String
fName
;
124
125
G4ParticleChangeForGamma
*
fpParticleChangeForGamma
;
126
127
std::vector<G4VDNAModel*>
fRegisteredModels
;
128
129
std::map<const G4String, G4double>
fMaterialCS
;
130
131
G4double
fCSsumTot
;
132
133
G4String
fSampledMat
;
134
135
typedef
std::map<const G4String ,std::map<const G4String , std::vector<G4VDNAModel*> > >
MaterialParticleModelTable
;
136
MaterialParticleModelTable
fMaterialParticleModelTable
;
137
138
std::map<G4String, const std::vector<double>* >
fMaterialMolPerVol
;
139
145
void
BuildMaterialParticleModelTable
(
const
G4ParticleDefinition
*p);
146
147
void
BuildMaterialMolPerVolTable
();
148
155
void
InsertModelInTable
(
const
G4String
& matName,
const
G4String
& pName);
156
166
G4VDNAModel
*
GetDNAModel
(
const
G4String
& material,
const
G4String
& particle,
G4double
ekin);
167
168
G4double
GetNumMoleculePerVolumeUnitForMaterial
(
const
G4Material
*
mat
);
169
G4double
GetNumMolPerVolUnitForComponentInComposite
(
const
G4Material
*component,
const
G4Material
* composite);
170
171
// copy constructor and hide assignment operator
172
G4DNAModelInterface
(
const
G4DNAModelInterface
&);
// prevent copy-construction
173
G4DNAModelInterface
&
operator=
(
const
G4DNAModelInterface
&
right
);
// prevent assignement
174
};
175
176
#endif // G4DNAMODELINTERFACE_HH
geant4
tree
geant4-10.6-release
source
processes
electromagnetic
dna
models
include
G4DNAModelInterface.hh
Built by
Jin Huang
. updated:
Wed Jun 29 2022 17:25:29
using
1.8.2 with
ECCE GitHub integration