Geant4
9.6.p02
Main Page
Related Pages
Modules
Namespaces
Classes
Files
File List
File Members
All
Classes
Namespaces
Files
Functions
Variables
Typedefs
Enumerations
Enumerator
Friends
Macros
Groups
Pages
geant4_9_6_p02
source
global
management
include
G4PhysicsOrderedFreeVector.hh
Go to the documentation of this file.
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$
28
//
30
// PhysicsOrderedFreeVector Class Definition
32
//
33
// File: G4PhysicsOrderedFreeVector.hh
34
// Created: 1996-08-13
35
// Author: Juliet Armstrong
36
// Updated: 1997-03-25 by Peter Gumplinger
37
// > cosmetics (only)
38
// 2000-11-11 by H.Kurashige
39
// > use STL vector for dataVector and binVector
40
// mail: gum@triumf.ca
41
//
42
// Class description:
43
//
44
// A physics ordered free vector inherits from G4PhysicsVector which
45
// has values of energy-loss, cross-section, and other physics values
46
// of a particle in matter in a given range of the energy, momentum,
47
// etc.). In addition, the ordered free vector provides a method for
48
// the user to insert energy/value pairs in sequence. Methods to
49
// Retrieve the Max and Min energies and values from the vector are
50
// also provided.
51
53
54
#ifndef G4PhysicsOrderedFreeVector_h
55
#define G4PhysicsOrderedFreeVector_h 1
56
58
// Includes
60
61
#include "
G4PhysicsVector.hh
"
62
64
// Class Definition
66
67
class
G4PhysicsOrderedFreeVector
:
public
G4PhysicsVector
68
{
69
70
public
:
// with description
71
73
// Constructors and Destructor
75
76
G4PhysicsOrderedFreeVector
();
77
G4PhysicsOrderedFreeVector
(
G4double
* Energies,
78
G4double
* Values,
79
size_t
VectorLength);
80
81
virtual
~G4PhysicsOrderedFreeVector
();
82
84
// Methods
86
87
void
InsertValues
(
G4double
energy
,
G4double
value
);
88
89
G4double
GetLowEdgeEnergy
(
size_t
binNumber)
const
;
90
91
G4double
GetMaxValue
();
92
93
G4double
GetMinValue
();
94
95
G4double
GetEnergy
(
G4double
aValue);
96
97
G4double
GetMaxLowEdgeEnergy
();
98
99
G4double
GetMinLowEdgeEnergy
();
100
101
void
DumpValues
();
102
103
private
:
104
105
virtual
size_t
FindBinLocation(
G4double
theEnergy)
const
;
106
107
size_t
FindValueBinLocation(
G4double
aValue);
108
109
G4double
LinearInterpolationOfEnergy(
G4double
aValue,
size_t
theLocBin);
110
};
111
112
#include "G4PhysicsOrderedFreeVector.icc"
113
114
#endif
/* G4PhysicsOrderedFreeVector_h */
115
116
117
118
119
120
Generated on Sat May 25 2013 14:33:17 for Geant4 by
1.8.4