Geant4 9.6.0
Toolkit for the simulation of the passage of particles through matter
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros
G4ConvexHull.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// ----------------------------------------------------------------------
30// Class G4ConvexHull
31//
32// Class Description:
33//
34// Definition of a convex hull list.
35
36// Author: J.Sulkimo, P.Urban.
37// Revisions by: L.Broglia, G.Cosmo.
38// ----------------------------------------------------------------------
39#ifndef __CONVEXHULL_H
40#define __CONVEXHULL_H
41
42
44{
45 public: // with description
46
49 : param (pparam), min(mmin), max(mmax) { next=this; }
50 // Constructors
51
53 // Destructor
54
55 G4ConvexHull* GetNextHull() { return next; }
56 G4double GetParam() const { return param; }
57 G4double GetMin() const { return min; }
58 G4double GetMax() const { return max; }
59
60 void SetNextHull(G4ConvexHull* n) { next=n; }
61 void SetParam(G4double p) { param=p; }
62 void SetMin(G4double x) { min=x; }
63 void SetMax(G4double y) { max=y; }
64
65 private:
66
67 G4ConvexHull *next;
68 G4double param;
69 G4double min;
70 G4double max;
71};
72
73#endif
double G4double
Definition: G4Types.hh:64
G4double GetMin() const
Definition: G4ConvexHull.hh:57
G4ConvexHull * GetNextHull()
Definition: G4ConvexHull.hh:55
G4double GetMax() const
Definition: G4ConvexHull.hh:58
void SetParam(G4double p)
Definition: G4ConvexHull.hh:61
G4double GetParam() const
Definition: G4ConvexHull.hh:56
void SetMin(G4double x)
Definition: G4ConvexHull.hh:62
void SetNextHull(G4ConvexHull *n)
Definition: G4ConvexHull.hh:60
void SetMax(G4double y)
Definition: G4ConvexHull.hh:63
G4ConvexHull(G4double pparam, G4double mmin, G4double mmax)
Definition: G4ConvexHull.hh:48