Geant4  v4-10.4-release
 모두 클래스 네임스페이스들 파일들 함수 변수 타입정의 열거형 타입 열거형 멤버 Friends 매크로 그룹들 페이지들
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>
36 #include "G4VEmModel.hh"
37 #include "G4VDNAModel.hh"
38 #include "G4Electron.hh"
40 #include "G4LogLogInterpolation.hh"
41 #include "G4ProductionCutsTable.hh"
42 #include "G4NistManager.hh"
43 #include "G4DNADummyModel.hh"
44 
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 
111 
112  void RegisterModel(G4VEmModel* model, const G4ParticleDefinition* particle);
113 
120 
121 private:
122 
123  const G4String fName;
124 
126 
127  std::vector<G4VDNAModel*> fRegisteredModels;
128 
129  std::map<const G4String, G4double> fMaterialCS;
130 
132 
134 
135  typedef std::map<const G4String ,std::map<const G4String , std::vector<G4VDNAModel*> > > MaterialParticleModelTable;
137 
138  std::map<G4String, const std::vector<double>* > fMaterialMolPerVol;
139 
146 
148 
155  void InsertModelInTable(const G4String& matName, const G4String& pName);
156 
166  G4VDNAModel* GetDNAModel(const G4String& material, const G4String& particle, G4double ekin);
167 
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
G4String GetSelectedMaterial()
GetSelectedMaterial To allow the user to retrieve the selected material in case of a composite materi...
const char * p
Definition: xmltok.h:285
G4double GetNumMoleculePerVolumeUnitForMaterial(const G4Material *mat)
static const G4double emax
G4String fSampledMat
for the user to retrieve selected material/component
std::map< const G4String, G4double > fMaterialCS
map used to share information between CrossSectionPerVolume and SampleSecondaries ...
virtual G4double CrossSectionPerVolume(const G4Material *material, const G4ParticleDefinition *p, G4double ekin, G4double emin, G4double emax)
CrossSectionPerVolume Method called by the process and used to call the CrossSectionPerVolume method ...
void InsertModelInTable(const G4String &matName, const G4String &pName)
InsertModelInTable Used to put a model in the table after performing some checks. ...
double G4double
Definition: G4Types.hh:76
G4VDNAModel * GetDNAModel(const G4String &material, const G4String &particle, G4double ekin)
GetDNAModel.
G4double fCSsumTot
value which contains the sum of all the component cross sections in case of a composite material ...
G4DNAModelInterface & operator=(const G4DNAModelInterface &right)
G4DNAModelInterface(const G4String &nam)
G4DNAModelManager Constructor.
virtual void Initialise(const G4ParticleDefinition *particle, const G4DataVector &cuts)
Initialise Initialise method to call all the initialise methods of the registered models...
std::vector< G4VDNAModel * > fRegisteredModels
vector containing all the registered models
Float_t mat
G4ParticleChangeForGamma * fpParticleChangeForGamma
pointer used to change the characteristics of the current particle
MaterialParticleModelTable fMaterialParticleModelTable
map: [materialName][particleName] = vector of models
std::map< const G4String,std::map< const G4String, std::vector< G4VDNAModel * > > > MaterialParticleModelTable
std::map< G4String, const std::vector< double > * > fMaterialMolPerVol
void BuildMaterialParticleModelTable(const G4ParticleDefinition *p)
BuildMaterialParticleModelTable Method used to build a map allowing the code to quickly retrieve the ...
const G4String fName
name of the interaction
virtual ~G4DNAModelInterface()
~G4DNAModelManager Destructor
The G4VDNAModel class.
Definition: G4VDNAModel.hh:49
const XML_Char XML_Content * model
Definition: expat.h:151
G4double GetNumMolPerVolUnitForComponentInComposite(const G4Material *component, const G4Material *composite)
virtual void SampleSecondaries(std::vector< G4DynamicParticle * > *fVect, const G4MaterialCutsCouple *couple, const G4DynamicParticle *aDynamicElectron, G4double tmin, G4double tmax)
SampleSecondaries Used to call the SampleSecondaries method of the registered models. A sampling is done to select a component if the material is a composite one.
void RegisterModel(G4VDNAModel *model)
RegisterModel Method used to associate a model with the interaction.