00001 // 00002 // ******************************************************************** 00003 // * License and Disclaimer * 00004 // * * 00005 // * The Geant4 software is copyright of the Copyright Holders of * 00006 // * the Geant4 Collaboration. It is provided under the terms and * 00007 // * conditions of the Geant4 Software License, included in the file * 00008 // * LICENSE and available at http://cern.ch/geant4/license . These * 00009 // * include a list of copyright holders. * 00010 // * * 00011 // * Neither the authors of this software system, nor their employing * 00012 // * institutes,nor the agencies providing financial support for this * 00013 // * work make any representation or warranty, express or implied, * 00014 // * regarding this software system or assume any liability for its * 00015 // * use. Please see the license in the file LICENSE and URL above * 00016 // * for the full disclaimer and the limitation of liability. * 00017 // * * 00018 // * This code implementation is the result of the scientific and * 00019 // * technical work of the GEANT4 collaboration. * 00020 // * By using, copying, modifying or distributing the software (or * 00021 // * any work based on the software) you agree to acknowledge its * 00022 // * use in resulting scientific publications, and indicate your * 00023 // * acceptance of all terms of the Geant4 Software license. * 00024 // ******************************************************************** 00025 // 00026 // 00027 // 00028 // Author: Vladimir Ivanchenko (Vladimir.Ivantchenko@cern.ch) 00029 // 00030 // History: 00031 // ----------- 00032 // 27 May 2002 VI Created 00033 // 00034 // 15 Jul 2009 N.A.Karakatsanis New methods added for loading logarithmic data 00035 // to enhance computing performance of interpolation 00036 // 00037 // ------------------------------------------------------------------- 00038 // Class description: 00039 // Lin-Log interpolation of a data set 00040 00041 // ------------------------------------------------------------------- 00042 00043 #ifndef G4LINLOGINTERPOLATION_HH 00044 #define G4LINLOGINTERPOLATION_HH 1 00045 00046 #include "globals.hh" 00047 #include "G4VDataSetAlgorithm.hh" 00048 #include "G4DataVector.hh" 00049 00050 class G4LinLogInterpolation : public G4VDataSetAlgorithm { 00051 00052 public: 00053 00054 G4LinLogInterpolation(); 00055 00056 ~G4LinLogInterpolation(); 00057 00058 G4double Calculate(G4double point, G4int bin, 00059 const G4DataVector& energies, 00060 const G4DataVector& data) const; 00061 00062 G4double Calculate(G4double point, G4int bin, 00063 const G4DataVector& energies, 00064 const G4DataVector& data, 00065 const G4DataVector& log_energies, 00066 const G4DataVector& log_data) const; 00067 00068 virtual G4VDataSetAlgorithm* Clone() const { return new G4LinLogInterpolation; } 00069 00070 private: 00071 00072 00073 // Hide copy constructor and assignment operator 00074 00075 }; 00076 00077 #endif 00078 00079 00080 00081 00082 00083 00084 00085 00086 00087 00088