Geant4
10.02
Main Page
Related Pages
Modules
Namespaces
Classes
Files
File List
File Members
G4PhysicsFreeVector.cc
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: G4PhysicsFreeVector.cc 93409 2015-10-21 13:26:27Z gcosmo $
28
//
29
//
30
//--------------------------------------------------------------------
31
// GEANT 4 class implementation file
32
//
33
// G4PhysicsFreeVector.cc
34
//
35
// History:
36
// 02 Dec. 1995, G.Cosmo : Structure created based on object model
37
// 06 June 1996, K.Amako : The 1st version of implemented
38
// 01 Jul. 1996, K.Amako : Cache mechanism and hidden bin from the
39
// user introduced
40
// 26 Sep. 1996, K.Amako : Constructor with only 'bin size' added
41
// 11 Nov. 2000, H.Kurashige : use STL vector for dataVector and binVector
42
// 19 Jun. 2009, V.Ivanchenko : removed hidden bin
43
//
44
//--------------------------------------------------------------------
45
46
#include "
G4PhysicsFreeVector.hh
"
47
48
49
G4PhysicsFreeVector::G4PhysicsFreeVector
()
50
:
G4PhysicsVector
()
51
{
52
type
=
T_G4PhysicsFreeVector
;
53
}
54
55
G4PhysicsFreeVector::G4PhysicsFreeVector
(
size_t
theNbin)
56
:
G4PhysicsVector
()
57
{
58
type
=
T_G4PhysicsFreeVector
;
59
numberOfNodes
= theNbin;
60
61
dataVector
.reserve(
numberOfNodes
);
62
binVector
.reserve(
numberOfNodes
);
63
64
for
(
size_t
i=0; i<
numberOfNodes
; ++i)
65
{
66
binVector
.push_back(0.0);
67
dataVector
.push_back(0.0);
68
}
69
}
70
71
G4PhysicsFreeVector::G4PhysicsFreeVector
(
const
G4DataVector
& theBinVector,
72
const
G4DataVector
& theDataVector)
73
{
74
type
=
T_G4PhysicsFreeVector
;
75
numberOfNodes
= theBinVector.size();
76
77
dataVector
.reserve(
numberOfNodes
);
78
binVector
.reserve(
numberOfNodes
);
79
80
for
(
size_t
i=0; i<
numberOfNodes
; ++i)
81
{
82
binVector
.push_back(theBinVector[i]);
83
dataVector
.push_back(theDataVector[i]);
84
}
85
86
edgeMin
=
binVector
[0];
87
edgeMax
=
binVector
[numberOfNodes-1];
88
}
89
90
G4PhysicsFreeVector::~G4PhysicsFreeVector
()
91
{
92
}
93
94
void
G4PhysicsFreeVector::PutValue
(
size_t
theBinNumber,
95
G4double
theBinValue,
96
G4double
theDataValue )
97
{
98
binVector
[theBinNumber] = theBinValue;
99
dataVector
[theBinNumber] = theDataValue;
100
101
if
( theBinNumber ==
numberOfNodes
-1 )
102
{
103
edgeMax
=
binVector
[
numberOfNodes
-1];
104
}
105
106
if
( theBinNumber == 0 )
107
{
108
edgeMin
=
binVector
[0];
109
}
110
}
G4PhysicsVector::dataVector
G4PVDataVector dataVector
Definition:
G4PhysicsVector.hh:214
G4PhysicsVector
Definition:
G4PhysicsVector.hh:76
G4PhysicsFreeVector::PutValue
void PutValue(size_t binNumber, G4double binValue, G4double dataValue)
Definition:
G4PhysicsFreeVector.cc:94
T_G4PhysicsFreeVector
Definition:
G4PhysicsVectorType.hh:55
G4PhysicsFreeVector::~G4PhysicsFreeVector
virtual ~G4PhysicsFreeVector()
Definition:
G4PhysicsFreeVector.cc:90
G4PhysicsVector::binVector
G4PVDataVector binVector
Definition:
G4PhysicsVector.hh:215
G4PhysicsVector::numberOfNodes
size_t numberOfNodes
Definition:
G4PhysicsVector.hh:212
G4DataVector
Definition:
G4DataVector.hh:50
G4PhysicsVector::edgeMin
G4double edgeMin
Definition:
G4PhysicsVector.hh:209
G4PhysicsVector::type
G4PhysicsVectorType type
Definition:
G4PhysicsVector.hh:207
G4PhysicsFreeVector.hh
G4double
double G4double
Definition:
G4Types.hh:76
G4PhysicsVector::edgeMax
G4double edgeMax
Definition:
G4PhysicsVector.hh:210
G4PhysicsFreeVector::G4PhysicsFreeVector
G4PhysicsFreeVector()
Definition:
G4PhysicsFreeVector.cc:49
geant4.10.02
source
global
management
src
G4PhysicsFreeVector.cc
Generated on Thu Dec 31 2015 10:45:51 for Geant4 by
1.8.8