Geant4 Cross Reference |
1 // 1 // 2 // ******************************************* 2 // ******************************************************************** 3 // * License and Disclaimer 3 // * License and Disclaimer * 4 // * 4 // * * 5 // * The Geant4 software is copyright of th 5 // * The Geant4 software is copyright of the Copyright Holders of * 6 // * the Geant4 Collaboration. It is provided 6 // * the Geant4 Collaboration. It is provided under the terms and * 7 // * conditions of the Geant4 Software License 7 // * conditions of the Geant4 Software License, included in the file * 8 // * LICENSE and available at http://cern.ch/ 8 // * LICENSE and available at http://cern.ch/geant4/license . These * 9 // * include a list of copyright holders. 9 // * include a list of copyright holders. * 10 // * 10 // * * 11 // * Neither the authors of this software syst 11 // * Neither the authors of this software system, nor their employing * 12 // * institutes,nor the agencies providing fin 12 // * institutes,nor the agencies providing financial support for this * 13 // * work make any representation or warran 13 // * work make any representation or warranty, express or implied, * 14 // * regarding this software system or assum 14 // * regarding this software system or assume any liability for its * 15 // * use. Please see the license in the file 15 // * use. Please see the license in the file LICENSE and URL above * 16 // * for the full disclaimer and the limitatio 16 // * for the full disclaimer and the limitation of liability. * 17 // * 17 // * * 18 // * This code implementation is the result 18 // * This code implementation is the result of the scientific and * 19 // * technical work of the GEANT4 collaboratio 19 // * technical work of the GEANT4 collaboration. * 20 // * By using, copying, modifying or distri 20 // * By using, copying, modifying or distributing the software (or * 21 // * any work based on the software) you ag 21 // * any work based on the software) you agree to acknowledge its * 22 // * use in resulting scientific publicati 22 // * use in resulting scientific publications, and indicate your * 23 // * acceptance of all terms of the Geant4 Sof 23 // * acceptance of all terms of the Geant4 Software license. * 24 // ******************************************* 24 // ******************************************************************** 25 // 25 // 26 // 26 // >> 27 // $Id: G4RDShellEMDataSet.hh 107396 2017-11-10 08:28:08Z gcosmo $ >> 28 // GEANT4 tag $Name: $ 27 // 29 // 28 // Author: Maria Grazia Pia (Maria.Grazia.Pia@ 30 // Author: Maria Grazia Pia (Maria.Grazia.Pia@cern.ch) 29 // 31 // 30 // History: 32 // History: 31 // ----------- 33 // ----------- 32 // 31 Jul 2001 MGP Created 34 // 31 Jul 2001 MGP Created 33 // 9 Mar 2008 MGP Cleaned up unreada 35 // 9 Mar 2008 MGP Cleaned up unreadable code modified by former developer 34 // (Further clean-up 36 // (Further clean-up needed) 35 // 37 // 36 // ------------------------------------------- 38 // ------------------------------------------------------------------- 37 39 38 // Class description: 40 // Class description: 39 // Low Energy Electromagnetic Physics 41 // Low Energy Electromagnetic Physics 40 // Data set for an electromagnetic physics pro 42 // Data set for an electromagnetic physics process 41 // A strategy pattern is used to encapsulate a 43 // A strategy pattern is used to encapsulate algorithms for data interpolation 42 // Further documentation available from http:/ 44 // Further documentation available from http://www.ge.infn.it/geant4/lowE 43 45 44 // ------------------------------------------- 46 // ------------------------------------------------------------------- 45 47 46 #ifndef G4RDSHELLEMDATASET_HH 48 #ifndef G4RDSHELLEMDATASET_HH 47 #define G4RDSHELLEMDATASET_HH 1 49 #define G4RDSHELLEMDATASET_HH 1 48 50 49 #include <vector> 51 #include <vector> 50 #include <CLHEP/Units/SystemOfUnits.h> 52 #include <CLHEP/Units/SystemOfUnits.h> 51 53 52 #include "globals.hh" 54 #include "globals.hh" 53 #include "G4RDVEMDataSet.hh" 55 #include "G4RDVEMDataSet.hh" 54 56 55 class G4RDVDataSetAlgorithm; 57 class G4RDVDataSetAlgorithm; 56 58 57 class G4RDShellEMDataSet : public G4RDVEMDataS 59 class G4RDShellEMDataSet : public G4RDVEMDataSet 58 { 60 { 59 public: 61 public: 60 G4RDShellEMDataSet(G4int Z, 62 G4RDShellEMDataSet(G4int Z, 61 G4RDVDataSetAlgorithm* algo, 63 G4RDVDataSetAlgorithm* algo, 62 G4double eUnit=CLHEP::MeV, 64 G4double eUnit=CLHEP::MeV, 63 G4double dataUnit=CLHEP::barn); 65 G4double dataUnit=CLHEP::barn); 64 66 65 virtual ~G4RDShellEMDataSet(); 67 virtual ~G4RDShellEMDataSet(); 66 68 67 virtual G4double FindValue(G4double energy, 69 virtual G4double FindValue(G4double energy, G4int componentId=0) const; 68 70 69 virtual void PrintData(void) const; 71 virtual void PrintData(void) const; 70 72 71 virtual const G4RDVEMDataSet* GetComponent( 73 virtual const G4RDVEMDataSet* GetComponent(G4int componentId) const { return components[componentId]; } 72 virtual void AddComponent(G4RDVEMDataSet* da 74 virtual void AddComponent(G4RDVEMDataSet* dataSet) { components.push_back(dataSet); } 73 virtual size_t NumberOfComponents(void) cons 75 virtual size_t NumberOfComponents(void) const { return components.size(); } 74 76 75 virtual const G4DataVector& GetEnergies(G4in 77 virtual const G4DataVector& GetEnergies(G4int componentId) const { return GetComponent(componentId)->GetEnergies(0); } 76 virtual const G4DataVector& GetData(G4int co 78 virtual const G4DataVector& GetData(G4int componentId) const { return GetComponent(componentId)->GetData(0); } 77 virtual void SetEnergiesData(G4DataVector* e 79 virtual void SetEnergiesData(G4DataVector* energies, G4DataVector* data, G4int componentId); 78 80 79 virtual G4bool LoadData(const G4String& file 81 virtual G4bool LoadData(const G4String& fileName); 80 virtual G4bool SaveData(const G4String& file 82 virtual G4bool SaveData(const G4String& fileName) const; 81 83 82 virtual G4double RandomSelect(G4int /*compon 84 virtual G4double RandomSelect(G4int /*componentId = 0*/) const { return -1.; }; 83 85 84 protected: 86 protected: 85 87 86 G4double GetUnitEnergies() const { return un 88 G4double GetUnitEnergies() const { return unitEnergies; } 87 G4double GetUnitData() const { return unitDa 89 G4double GetUnitData() const { return unitData; } 88 const G4RDVDataSetAlgorithm* GetAlgorithm() 90 const G4RDVDataSetAlgorithm* GetAlgorithm() const { return algorithm; } 89 91 90 void CleanUpComponents(void); 92 void CleanUpComponents(void); 91 93 92 private: 94 private: 93 95 94 G4String FullFileName(const G4String& fileNa 96 G4String FullFileName(const G4String& fileName) const; 95 97 96 // Hide copy constructor and assignment oper 98 // Hide copy constructor and assignment operator 97 G4RDShellEMDataSet(); 99 G4RDShellEMDataSet(); 98 G4RDShellEMDataSet(const G4RDShellEMDataSet& 100 G4RDShellEMDataSet(const G4RDShellEMDataSet& copy); 99 G4RDShellEMDataSet& operator=(const G4RDShel 101 G4RDShellEMDataSet& operator=(const G4RDShellEMDataSet& right); 100 102 101 std::vector<G4RDVEMDataSet*> components; 103 std::vector<G4RDVEMDataSet*> components; // Owned pointers 102 104 103 G4int z; 105 G4int z; 104 106 105 G4RDVDataSetAlgorithm* algorithm; 107 G4RDVDataSetAlgorithm* algorithm; // Owned pointer 106 108 107 G4double unitEnergies; 109 G4double unitEnergies; 108 G4double unitData; 110 G4double unitData; 109 }; 111 }; 110 #endif /* G4SHELLEMDATASET_HH */ 112 #endif /* G4SHELLEMDATASET_HH */ 111 113