ECCE @ EIC Software
 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>
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 
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