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 // G4PhysicsFreeVector << 27 // 26 // 28 // Class description: << 27 // $Id: G4PhysicsFreeVector.hh 74256 2013-10-02 14:24:02Z gcosmo $ 29 // 28 // 30 // A physics vector which has values of energy << 29 // 31 // and other physics values of a particle in m << 30 //-------------------------------------------------------------------- 32 // range of the energy, momentum, etc. The sca << 31 // GEANT 4 class header file 33 // bins is in free, i.e. it is NOT need to be << 32 // 34 // restriction is that bin values alway have t << 33 // G4PhysicsFreeVector.hh 35 // a lower bin to a higher bin. This is necess << 34 // 36 // search to work correctly. << 35 // Class description: 37 << 36 // 38 // Authors: << 37 // A physics vector which has values of energy-loss, cross-section, 39 // - 02 Dec. 1995, G.Cosmo: Structure created << 38 // and other physics values of a particle in matter in a given 40 // - 06 Jun. 1996, K.Amako: Implemented the 1s << 39 // range of the energy, momentum, etc. The scale of energy/momentum 41 // Revisions: << 40 // bins is in free, ie. it is NOT need to be linear or log. Only 42 // - 11 Nov. 2000, H.Kurashige: Use STL vector << 41 // restrication is that bin values alway have to increase from 43 // - 04 Feb. 2021, V.Ivanchenko moved implemen << 42 // a lower bin to a higher bin. This is necessary for the binary 44 // to this class << 43 // search to work correctly. 45 // ------------------------------------------- << 44 46 #ifndef G4PhysicsFreeVector_hh << 45 // History: 47 #define G4PhysicsFreeVector_hh 1 << 46 // 02 Dec. 1995, G.Cosmo : Structure created based on object model >> 47 // 06 Jun. 1996, K.Amako : Implemented the 1st version >> 48 // 01 Jul. 1996, K.Amako : Cache mechanism and hidden bin from the >> 49 // user introduced >> 50 // 26 Sep. 1996, K.Amako : Constructor with only 'bin size' added >> 51 // 11 Nov. 2000, H.Kurashige : Use STL vector for dataVector and binVector >> 52 // 02 Oct. 2013 V.Ivanchenko : Remove FindBinLocation method >> 53 // >> 54 //-------------------------------------------------------------------- >> 55 >> 56 #ifndef G4PhysicsFreeVector_h >> 57 #define G4PhysicsFreeVector_h 1 48 58 49 #include "G4PhysicsVector.hh" << 50 #include "globals.hh" 59 #include "globals.hh" 51 #include <vector> << 60 #include "G4PhysicsVector.hh" >> 61 #include "G4DataVector.hh" 52 62 53 class G4PhysicsFreeVector : public G4PhysicsVe << 63 class G4PhysicsFreeVector : public G4PhysicsVector 54 { 64 { 55 public: << 65 public: // with description >> 66 >> 67 G4PhysicsFreeVector(); >> 68 explicit G4PhysicsFreeVector(size_t theNbin); >> 69 G4PhysicsFreeVector(const G4DataVector& binVector, >> 70 const G4DataVector& dataVector); >> 71 // Constructors: >> 72 // 'binVector' has the low edge value of each scale bin. >> 73 // 'dataVector' has the cross-section/energy-loss/etc at >> 74 // the energy/momenturm of the corresponding a bin of >> 75 // 'binVector'. 'binVector' and 'dataVector' need to have >> 76 // the same vector length. >> 77 >> 78 virtual ~G4PhysicsFreeVector(); >> 79 // Destructor >> 80 >> 81 void PutValue( size_t binNumber, G4double binValue, >> 82 G4double dataValue ); >> 83 // To use this method to fill a PhysicsFreeVector, you have >> 84 // to Construct a PhysicsFreeVector of the size you need >> 85 // using G4PhysicsFreeVector(size_t theNbin). Also take >> 86 // note that you have to fill all bin values and data >> 87 // values before you the PhysicsFreeVector. 56 88 57 // Constructors of a free vector without fil << 58 // The vector will be filled using PutValues << 59 // InsertValues(..) methods. << 60 // If length > 0 energy and data vectors are << 61 explicit G4PhysicsFreeVector(G4bool spline = << 62 explicit G4PhysicsFreeVector(G4int length); << 63 explicit G4PhysicsFreeVector(std::size_t len << 64 << 65 // Obsolete constructor - emin and emax are << 66 explicit G4PhysicsFreeVector(std::size_t len << 67 G4double emax, << 68 << 69 // The vector is filled in these constructor << 70 // 'energies' and 'values' need to have the << 71 // 'energies' assumed to increase, it is all << 72 // equal energies << 73 explicit G4PhysicsFreeVector(const std::vect << 74 const std::vect << 75 G4bool spline = << 76 explicit G4PhysicsFreeVector(const G4double* << 77 std::size_t len << 78 << 79 ~G4PhysicsFreeVector() override = default; << 80 << 81 // Filling of the vector with the check on i << 82 void PutValues(const std::size_t index, << 83 const G4double energy, const << 84 << 85 // Insert extra pair of energy and value << 86 // If energy coincide with previously added << 87 // this new pair is added after << 88 void InsertValues(const G4double energy, con << 89 << 90 void EnableLogBinSearch(const G4int n = 1); << 91 << 92 // Obsolete method << 93 inline void PutValue(const std::size_t index << 94 const G4double e, const << 95 }; 89 }; 96 90 97 inline void G4PhysicsFreeVector::PutValue(cons << 98 cons << 99 cons << 100 { << 101 PutValues(index, e, value); << 102 } << 103 91 104 #endif 92 #endif 105 93