Geant4-11
G4MicroElecCrossSectionDataSet_new.hh
Go to the documentation of this file.
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// MR - 04/04/2012
27// Based on G4DNACrossSectionDataSet
28//
29
30#ifndef G4MICROELECCROSSSECTIONDATASET_NEW_HH
31#define G4MICROELECCROSSSECTIONDATASET_NEW_HH 1
32
34#include "G4ShellEMDataSet.hh"
35
37{
38public:
40 G4double xUnit=CLHEP::MeV,
41 G4double dataUnit=CLHEP::barn);
43
44 G4double FindValue(G4double e, G4int componentId=0) const override;
45 G4double FindShellValue(G4double argEnergy, G4int shell) const;
46 void PrintData(void) const override;
47 const G4VEMDataSet* GetComponent(G4int componentId) const override
48 { return components[componentId]; }
49 void AddComponent(G4VEMDataSet* dataSet) override
50 { components.push_back(dataSet); }
51 size_t NumberOfComponents(void) const override
52 { return components.size(); }
53 const G4DataVector& GetEnergies(G4int componentId) const override
54 { return GetComponent(componentId)->GetEnergies(0); }
55 const G4DataVector& GetData(G4int componentId) const override
56 { return GetComponent(componentId)->GetData(0); }
57 const G4DataVector& GetLogEnergies(G4int componentId) const override
58 { return GetComponent(componentId)->GetLogEnergies(0); }
59 const G4DataVector& GetLogData(G4int componentId) const override
60 { return GetComponent(componentId)->GetLogData(0); }
61 void SetEnergiesData(G4DataVector* x, G4DataVector* values, G4int componentId) override;
63 G4DataVector* values,
64 G4DataVector* log_x,
65 G4DataVector* log_values,
66 G4int componentId) override;
67 G4bool LoadData(const G4String & argFileName) override;
68 G4bool LoadNonLogData(const G4String & argFileName) override;
69 G4bool SaveData(const G4String & argFileName) const override;
70 G4double RandomSelect(G4int /*componentId */) const override
71 { return -1.; };
72
75
76private:
77 G4String FullFileName(const G4String & argFileName) const;
79 G4double GetUnitData() const { return unitData; }
80 const G4VDataSetAlgorithm* GetAlgorithm() const { return algorithm; }
81 void CleanUpComponents();
82
83 std::vector<G4VEMDataSet*> components; // Owned pointers
84
85 G4VDataSetAlgorithm* algorithm; // Owned pointer
88};
89#endif
double G4double
Definition: G4Types.hh:83
bool G4bool
Definition: G4Types.hh:86
int G4int
Definition: G4Types.hh:85
const G4DataVector & GetLogData(G4int componentId) const override
G4String FullFileName(const G4String &argFileName) const
const G4DataVector & GetEnergies(G4int componentId) const override
G4double FindShellValue(G4double argEnergy, G4int shell) const
const G4VEMDataSet * GetComponent(G4int componentId) const override
const G4DataVector & GetData(G4int componentId) const override
G4bool LoadNonLogData(const G4String &argFileName) override
G4MicroElecCrossSectionDataSet_new & operator=(const G4MicroElecCrossSectionDataSet_new &right)=delete
void AddComponent(G4VEMDataSet *dataSet) override
G4bool LoadData(const G4String &argFileName) override
G4double FindValue(G4double e, G4int componentId=0) const override
G4MicroElecCrossSectionDataSet_new(G4VDataSetAlgorithm *algo, G4double xUnit=CLHEP::MeV, G4double dataUnit=CLHEP::barn)
void SetEnergiesData(G4DataVector *x, G4DataVector *values, G4int componentId) override
G4bool SaveData(const G4String &argFileName) const override
void SetLogEnergiesData(G4DataVector *x, G4DataVector *values, G4DataVector *log_x, G4DataVector *log_values, G4int componentId) override
const G4VDataSetAlgorithm * GetAlgorithm() const
const G4DataVector & GetLogEnergies(G4int componentId) const override
G4MicroElecCrossSectionDataSet_new(const G4MicroElecCrossSectionDataSet_new &copy)=delete
virtual const G4DataVector & GetLogData(G4int componentId) const =0
virtual const G4DataVector & GetLogEnergies(G4int componentId) const =0
virtual const G4DataVector & GetData(G4int componentId) const =0
virtual const G4DataVector & GetEnergies(G4int componentId) const =0
static constexpr double barn
Definition: SystemOfUnits.h:86
static constexpr double MeV
void copy(G4double dst[], const G4double src[], size_t size=G4FieldTrack::ncompSVEC)
Definition: G4FieldUtils.cc:98