source: trunk/source/global/management/src/G4PhysicsLnVector.cc@ 883

Last change on this file since 883 was 850, checked in by garnier, 17 years ago

geant4.8.2 beta

File size: 3.8 KB
Line 
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//
27// $Id: G4PhysicsLnVector.cc,v 1.15 2006/06/29 19:04:15 gunter Exp $
28// GEANT4 tag $Name: HEAD $
29//
30//
31// --------------------------------------------------------------
32// GEANT 4 class implementation file
33//
34// G4PhysicsLnVector.cc
35//
36// History:
37// 27 Apr. 1999, M.G. Pia: Created, copying from G4PhysicsLogVector
38// 11 Nov. 2000, H.Kurashige : use STL vector for dataVector and binVector
39// 9 Mar. 2001, H.Kurashige : add PhysicsVector type and Retrieve
40//
41// --------------------------------------------------------------
42
43#include "G4PhysicsLnVector.hh"
44
45G4PhysicsLnVector::G4PhysicsLnVector()
46 : dBin(0.), baseBin(0.)
47{
48 type = T_G4PhysicsLnVector;
49}
50
51G4PhysicsLnVector::G4PhysicsLnVector(size_t theNbin)
52 : dBin(0.), baseBin(0.)
53{
54 type = T_G4PhysicsLnVector;
55
56 // Add extra one bin (hidden to user) to handle correctly when
57 // Energy=theEmax in getValue.
58 dataVector.reserve(theNbin+1);
59 binVector.reserve(theNbin+1);
60
61 numberOfBin = theNbin;
62
63 edgeMin = 0.;
64 edgeMax = 0.;
65
66 lastBin = INT_MAX;
67 lastEnergy = -DBL_MAX;
68 lastValue = DBL_MAX;
69
70 for (size_t i=0; i<=numberOfBin; i++)
71 {
72 binVector.push_back(0.0);
73 dataVector.push_back(0.0);
74 }
75}
76
77G4PhysicsLnVector::G4PhysicsLnVector(G4double theEmin,
78 G4double theEmax, size_t theNbin)
79 : dBin(std::log(theEmax/theEmin)/theNbin),
80 baseBin(std::log(theEmin)/dBin)
81{
82 type = T_G4PhysicsLnVector;
83
84 // Add extra one bin (hidden to user) to handle correctly when
85 // Energy=theEmax in getValue.
86 dataVector.reserve(theNbin+1);
87 binVector.reserve(theNbin+1);
88
89 numberOfBin = theNbin;
90
91 for (size_t i=0; i<numberOfBin+1; i++)
92 {
93 binVector.push_back(std::exp(std::log(theEmin)+i*dBin));
94 dataVector.push_back(0.0);
95 }
96
97 edgeMin = binVector[0];
98 edgeMax = binVector[numberOfBin-1];
99
100 lastBin = INT_MAX;
101 lastEnergy = -DBL_MAX;
102 lastValue = DBL_MAX;
103}
104
105G4PhysicsLnVector::~G4PhysicsLnVector(){}
106
107G4bool G4PhysicsLnVector::Retrieve(std::ifstream& fIn, G4bool ascii)
108{
109 G4bool success = G4PhysicsVector::Retrieve(fIn, ascii);
110 if (success)
111 {
112 G4double theEmin = binVector[0];
113 dBin = std::log(binVector[1]/theEmin);
114 baseBin = std::log(theEmin)/dBin;
115 }
116 return success;
117}
Note: See TracBrowser for help on using the repository browser.