Geant4 Cross Reference |
1 // 1 // 2 // ******************************************* 2 // ******************************************************************** 3 // * License and Disclaimer << 3 // * DISCLAIMER * 4 // * 4 // * * 5 // * The Geant4 software is copyright of th << 5 // * The following disclaimer summarizes all the specific disclaimers * 6 // * the Geant4 Collaboration. It is provided << 6 // * of contributors to this software. The specific disclaimers,which * 7 // * conditions of the Geant4 Software License << 7 // * govern, are listed with their locations in: * 8 // * LICENSE and available at http://cern.ch/ << 8 // * http://cern.ch/geant4/license * 9 // * include a list of copyright holders. << 10 // * 9 // * * 11 // * Neither the authors of this software syst 10 // * Neither the authors of this software system, nor their employing * 12 // * institutes,nor the agencies providing fin 11 // * institutes,nor the agencies providing financial support for this * 13 // * work make any representation or warran 12 // * work make any representation or warranty, express or implied, * 14 // * regarding this software system or assum 13 // * regarding this software system or assume any liability for its * 15 // * use. Please see the license in the file << 14 // * use. * 16 // * for the full disclaimer and the limitatio << 17 // * 15 // * * 18 // * This code implementation is the result << 16 // * This code implementation is the intellectual property of the * 19 // * technical work of the GEANT4 collaboratio << 17 // * GEANT4 collaboration. * 20 // * By using, copying, modifying or distri << 18 // * By copying, distributing or modifying the Program (or any work * 21 // * any work based on the software) you ag << 19 // * based on the Program) you indicate your acceptance of this * 22 // * use in resulting scientific publicati << 20 // * statement, and all its terms. * 23 // * acceptance of all terms of the Geant4 Sof << 24 // ******************************************* 21 // ******************************************************************** 25 // 22 // 26 // 23 // >> 24 // $Id: G4VEMDataSet.hh,v 1.6 2002/05/28 09:15:26 pia Exp $ >> 25 // GEANT4 tag $Name: geant4-06-00 $ 27 // 26 // 28 // Author: Maria Grazia Pia (Maria.Grazia.Pia@ 27 // Author: Maria Grazia Pia (Maria.Grazia.Pia@cern.ch) 29 // 28 // 30 // History: 29 // History: 31 // ----------- 30 // ----------- 32 // 31 Jul 2001 MGP Created << 31 // 31 Jul 2001 MGP Created 33 // << 34 // 15 Jul 2009 N.A.Karakatsanis New metho << 35 // to enhanc << 36 // << 37 // 24 Dec 2010 V.Ivanchenko moved constructo << 38 // 32 // 39 // ------------------------------------------- 33 // ------------------------------------------------------------------- 40 34 41 // Class description: 35 // Class description: 42 // Low Energy Electromagnetic Physics 36 // Low Energy Electromagnetic Physics 43 // Data set for an electromagnetic physics pro 37 // Data set for an electromagnetic physics process 44 // A strategy pattern is used to encapsulate a 38 // A strategy pattern is used to encapsulate algorithms for data interpolation 45 // Further documentation available from http:/ 39 // Further documentation available from http://www.ge.infn.it/geant4/lowE 46 40 47 // ------------------------------------------- 41 // ------------------------------------------------------------------- 48 42 49 #ifndef G4VEMDATASET_HH << 43 #ifndef G4VEMDATASET_HH 50 #define G4VEMDATASET_HH 1 << 44 #define G4VEMDATASET_HH 1 51 45 52 #include "globals.hh" 46 #include "globals.hh" 53 #include "G4DataVector.hh" 47 #include "G4DataVector.hh" 54 48 >> 49 class G4VDataSetAlgorithm; >> 50 55 class G4VEMDataSet 51 class G4VEMDataSet 56 { 52 { 57 public: 53 public: 58 explicit G4VEMDataSet(); << 54 59 virtual ~G4VEMDataSet(); << 55 G4VEMDataSet() { } 60 << 56 61 virtual G4double FindValue(G4double x, G4int << 57 virtual ~G4VEMDataSet() { } 62 58 63 virtual void PrintData(void) const = 0; << 59 virtual G4double FindValue(G4double e, G4int id = 0) const = 0; 64 << 60 65 virtual const G4VEMDataSet* GetComponent(G4i << 61 virtual void PrintData() const = 0; >> 62 >> 63 virtual const G4VEMDataSet* GetComponent(G4int i) const = 0; >> 64 66 virtual void AddComponent(G4VEMDataSet* data 65 virtual void AddComponent(G4VEMDataSet* dataSet) = 0; 67 virtual size_t NumberOfComponents(void) cons << 66 >> 67 virtual size_t NumberOfComponents() const = 0; >> 68 >> 69 virtual const G4DataVector& GetEnergies(G4int i) const = 0; >> 70 virtual const G4DataVector& GetData(G4int i) const = 0; >> 71 >> 72 protected: >> 73 >> 74 private: >> 75 >> 76 // Hide copy constructor and assignment operator >> 77 G4VEMDataSet(const G4VEMDataSet&); >> 78 G4VEMDataSet & operator=(const G4VEMDataSet &right); >> 79 >> 80 }; 68 81 69 virtual const G4DataVector& GetEnergies(G4in << 82 #endif 70 virtual const G4DataVector& GetData(G4int co << 71 virtual const G4DataVector& GetLogEnergies(G << 72 virtual const G4DataVector& GetLogData(G4int << 73 << 74 virtual void SetEnergiesData(G4DataVector* x << 75 virtual void SetLogEnergiesData(G4DataVector << 76 G4DataVector << 77 G4DataVector << 78 G4DataVector << 79 G4int compon << 80 83 81 virtual G4bool LoadData(const G4String& file << 82 virtual G4bool LoadNonLogData(const G4String << 83 84 84 virtual G4bool SaveData(const G4String& file << 85 85 86 virtual G4double RandomSelect(G4int componen << 86 87 << 87 88 G4VEMDataSet(const G4VEMDataSet& copy) = del << 88 89 G4VEMDataSet& operator=(const G4VEMDataSet& << 89 90 }; << 90 91 #endif /* G4VEMDATASET_HH */ << 91 >> 92 >> 93 92 94