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
processes
hadronic
models
neutron_hp
include
G4NeutronHPField.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
//
29
#ifndef G4NeutronHPField_h
30
#define G4NeutronHPField_h 1
31
32
#include "
G4NeutronHPFieldPoint.hh
"
33
#include "
G4PhysicsVector.hh
"
34
35
class
G4NeutronHPField
36
{
37
public
:
38
39
G4NeutronHPField
();
40
41
~G4NeutronHPField
();
42
43
inline
void
InitY
(
G4int
i,
G4int
n
)
44
{
45
Check(i);
46
theData[i].
InitY
(n);
47
}
48
inline
void
SetData
(
G4int
i,
G4double
x
,
G4int
j,
G4double
y
)
49
{
50
Check(i);
51
theData[i].
SetData
(x, j, y);
52
}
53
inline
void
SetEnergy
(
G4int
i,
G4double
e
)
54
{
55
Check(i);
56
theData[i].
SetX
(e);
57
}
58
inline
void
SetX
(
G4int
i,
G4double
e
)
59
{
60
Check(i);
61
theData[i].
SetX
(e);
62
}
63
inline
void
SetY
(
G4int
i,
G4int
j,
G4double
x
)
64
{
65
Check(i);
66
theData[i].
SetY
(j, x);
67
}
68
inline
G4double
GetEnergy
(
G4int
i) {
return
theData[i].
GetX
(); }
69
inline
G4double
GetX
(
G4int
i) {
return
theData[i].
GetX
(); }
70
inline
G4double
GetY
(
G4int
i,
G4int
j) {
return
theData[i].
GetY
(j); }
71
inline
G4NeutronHPFieldPoint
&
GetPoint
(
G4int
i) {
return
theData[i]; }
72
73
G4double
GetY
(
G4double
e
,
G4int
j);
74
75
inline
G4int
GetFieldLength
() {
return
nEntries;}
76
77
void
Dump
();
78
79
private
:
80
81
void
Check(
G4int
i);
82
83
G4NeutronHPFieldPoint
* theData;
84
G4int
nEntries;
85
G4int
nPoints;
86
};
87
88
#endif
Generated on Sat May 25 2013 14:34:02 for Geant4 by
1.8.4