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: G4SemiLogInterpolation.hh,v 1.3 2002/05/28 09:15:26 pia Exp $ >> 25 // GEANT4 tag $Name: geant4-05-02-patch-01 $ 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 // 32 // 37 // ------------------------------------------- 33 // ------------------------------------------------------------------- 38 // Class description: 34 // Class description: 39 // Log-Log interpolation of a data set 35 // Log-Log interpolation of a data set 40 // Part of a strategy pattern to encapsulate a 36 // Part of a strategy pattern to encapsulate algorithms for interpolation of data sets 41 // Further documentation available from http:/ 37 // Further documentation available from http://www.ge.infn.it/geant4/lowE/index.html >> 38 42 // ------------------------------------------- 39 // ------------------------------------------------------------------- 43 40 44 #ifndef G4SEMILOGINTERPOLATION_HH 41 #ifndef G4SEMILOGINTERPOLATION_HH 45 #define G4SEMILOGINTERPOLATION_HH 1 42 #define G4SEMILOGINTERPOLATION_HH 1 46 43 47 #include "globals.hh" 44 #include "globals.hh" 48 #include "G4VDataSetAlgorithm.hh" 45 #include "G4VDataSetAlgorithm.hh" 49 #include "G4DataVector.hh" 46 #include "G4DataVector.hh" 50 47 51 class G4SemiLogInterpolation : public G4VDataS 48 class G4SemiLogInterpolation : public G4VDataSetAlgorithm { 52 public: << 49 53 explicit G4SemiLogInterpolation(); << 50 public: >> 51 >> 52 G4SemiLogInterpolation(); 54 53 55 ~G4SemiLogInterpolation(); 54 ~G4SemiLogInterpolation(); 56 55 57 G4double Calculate(G4double point, G4int bin 56 G4double Calculate(G4double point, G4int bin, 58 const G4DataVector& energies, 57 const G4DataVector& energies, 59 const G4DataVector& data) const overr << 58 const G4DataVector& data) const; >> 59 >> 60 virtual G4VDataSetAlgorithm* Clone() const; 60 61 61 G4double Calculate(G4double point, G4int bin << 62 private: 62 const G4DataVector& energ << 63 const G4DataVector& data, << 64 const G4DataVector& log_energies, << 65 const G4DataVector& log_data) const o << 66 63 67 G4VDataSetAlgorithm* Clone() const override; << 64 >> 65 // Hide copy constructor and assignment operator 68 66 69 }; 67 }; 70 68 71 #endif 69 #endif 72 70 73 71 74 72 75 73 76 74 77 75 78 76 79 77 80 78 81 79 82 80 83 81