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 // MR - 04/04/2012 26 // MR - 04/04/2012 27 // Based on G4DNACrossSectionDataSet 27 // Based on G4DNACrossSectionDataSet 28 // 28 // 29 29 30 #ifndef G4MICROELECCROSSSECTIONDATASET_NEW_HH 30 #ifndef G4MICROELECCROSSSECTIONDATASET_NEW_HH 31 #define G4MICROELECCROSSSECTIONDATASET_NEW_HH 31 #define G4MICROELECCROSSSECTIONDATASET_NEW_HH 1 32 32 33 #include <CLHEP/Units/SystemOfUnits.h> 33 #include <CLHEP/Units/SystemOfUnits.h> 34 #include "G4ShellEMDataSet.hh" 34 #include "G4ShellEMDataSet.hh" 35 35 36 class G4MicroElecCrossSectionDataSet_new : pub 36 class G4MicroElecCrossSectionDataSet_new : public G4VEMDataSet 37 { 37 { 38 public: 38 public: 39 explicit G4MicroElecCrossSectionDataSet_new( 39 explicit G4MicroElecCrossSectionDataSet_new(G4VDataSetAlgorithm* algo, 40 G4double xUnit=CLHEP::MeV, 40 G4double xUnit=CLHEP::MeV, 41 G4double dataUnit=CLHEP::barn) 41 G4double dataUnit=CLHEP::barn); 42 ~G4MicroElecCrossSectionDataSet_new() overri 42 ~G4MicroElecCrossSectionDataSet_new() override; 43 43 44 G4double FindValue(G4double e, G4int compone 44 G4double FindValue(G4double e, G4int componentId=0) const override; 45 G4double FindShellValue(G4double argEnergy, 45 G4double FindShellValue(G4double argEnergy, G4int shell) const; 46 void PrintData(void) const override; 46 void PrintData(void) const override; 47 const G4VEMDataSet* GetComponent(G4int comp 47 const G4VEMDataSet* GetComponent(G4int componentId) const override 48 { return components[componentId]; } 48 { return components[componentId]; } 49 void AddComponent(G4VEMDataSet* dataSet) ove 49 void AddComponent(G4VEMDataSet* dataSet) override 50 { components.push_back(dataSet); } 50 { components.push_back(dataSet); } 51 size_t NumberOfComponents(void) const overri 51 size_t NumberOfComponents(void) const override 52 { return components.size(); } 52 { return components.size(); } 53 const G4DataVector& GetEnergies(G4int compon 53 const G4DataVector& GetEnergies(G4int componentId) const override 54 { return GetComponent(componentId)->GetEnerg 54 { return GetComponent(componentId)->GetEnergies(0); } 55 const G4DataVector& GetData(G4int componentI 55 const G4DataVector& GetData(G4int componentId) const override 56 { return GetComponent(componentId)->GetDat 56 { return GetComponent(componentId)->GetData(0); } 57 const G4DataVector& GetLogEnergies(G4int com 57 const G4DataVector& GetLogEnergies(G4int componentId) const override 58 { return GetComponent(componentId)->GetLog 58 { return GetComponent(componentId)->GetLogEnergies(0); } 59 const G4DataVector& GetLogData(G4int compone 59 const G4DataVector& GetLogData(G4int componentId) const override 60 { return GetComponent(componentId)->GetLog 60 { return GetComponent(componentId)->GetLogData(0); } 61 void SetEnergiesData(G4DataVector* x, G4Data 61 void SetEnergiesData(G4DataVector* x, G4DataVector* values, G4int componentId) override; 62 void SetLogEnergiesData(G4DataVector* x, 62 void SetLogEnergiesData(G4DataVector* x, 63 G4DataVector* values, 63 G4DataVector* values, 64 G4DataVector* log_x, 64 G4DataVector* log_x, 65 G4DataVector* log_values, 65 G4DataVector* log_values, 66 G4int componentId) override; 66 G4int componentId) override; 67 G4bool LoadData(const G4String & argFileName 67 G4bool LoadData(const G4String & argFileName) override; 68 G4bool LoadNonLogData(const G4String & argFi 68 G4bool LoadNonLogData(const G4String & argFileName) override; 69 G4bool SaveData(const G4String & argFileName 69 G4bool SaveData(const G4String & argFileName) const override; 70 G4double RandomSelect(G4int /*componentId */ 70 G4double RandomSelect(G4int /*componentId */) const override 71 { return -1.; }; 71 { return -1.; }; 72 72 73 G4MicroElecCrossSectionDataSet_new(const G4M 73 G4MicroElecCrossSectionDataSet_new(const G4MicroElecCrossSectionDataSet_new & copy) = delete; 74 G4MicroElecCrossSectionDataSet_new& operator 74 G4MicroElecCrossSectionDataSet_new& operator=(const G4MicroElecCrossSectionDataSet_new & right) = delete; 75 75 76 private: 76 private: 77 G4String FullFileName(const G4String & argFi 77 G4String FullFileName(const G4String & argFileName) const; 78 G4double GetUnitEnergies() const { return un 78 G4double GetUnitEnergies() const { return unitEnergies; } 79 G4double GetUnitData() const { return unitDa 79 G4double GetUnitData() const { return unitData; } 80 const G4VDataSetAlgorithm* GetAlgorithm() co 80 const G4VDataSetAlgorithm* GetAlgorithm() const { return algorithm; } 81 void CleanUpComponents(); 81 void CleanUpComponents(); 82 82 83 std::vector<G4VEMDataSet*> components; 83 std::vector<G4VEMDataSet*> components; // Owned pointers 84 84 85 G4VDataSetAlgorithm* algorithm; // 85 G4VDataSetAlgorithm* algorithm; // Owned pointer 86 G4double unitEnergies; 86 G4double unitEnergies; 87 G4double unitData; 87 G4double unitData; 88 }; 88 }; 89 #endif 89 #endif 90 90