Geant4 10.7.0
Toolkit for the simulation of the passage of particles through matter
Loading...
Searching...
No Matches
G4ParticleHPField.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// P. Arce, June-2014 Conversion neutron_hp to particle_hp
28//
29#ifndef G4ParticleHPField_h
30#define G4ParticleHPField_h 1
31
33#include "G4PhysicsVector.hh"
34
36{
37 public:
38
40
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 G4ParticleHPFieldPoint & GetPoint(G4int i) { return theData[i]; }
72
74
75 inline G4int GetFieldLength() {return nEntries;}
76
77 void Dump();
78
79 private:
80
81 void Check(G4int i);
82
83 G4ParticleHPFieldPoint * theData;
84 G4int nEntries;
85 G4int nPoints;
86};
87
88#endif
double G4double
Definition: G4Types.hh:83
int G4int
Definition: G4Types.hh:85
void SetData(G4double e, G4int i, G4double x)
void SetY(G4int i, G4double x)
G4double GetY(G4int i) const
G4double GetY(G4int i, G4int j)
G4double GetX(G4int i)
G4ParticleHPFieldPoint & GetPoint(G4int i)
void SetEnergy(G4int i, G4double e)
void SetY(G4int i, G4int j, G4double x)
void InitY(G4int i, G4int n)
G4double GetEnergy(G4int i)
void SetData(G4int i, G4double x, G4int j, G4double y)
void SetX(G4int i, G4double e)