source: trunk/source/graphics_reps/src/G4PolyhedronArbitrary.cc@ 890

Last change on this file since 890 was 830, checked in by garnier, 17 years ago

import all except CVS

File size: 4.5 KB
Line 
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 and of QinetiQ Ltd, *
20// * subject DEFCON 705 IPR conditions. *
21// * By using, copying, modifying or distributing the software (or *
22// * any work based on the software) you agree to acknowledge its *
23// * use in resulting scientific publications, and indicate your *
24// * acceptance of all terms of the Geant4 Software license. *
25// ********************************************************************
26//
27// %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
28//
29// MODULE: G4PolyhedronArbitrary.cc
30//
31// Date: 15/06/2005
32// Author: P R Truscott
33// Organisation: QinetiQ Ltd, UK
34// Customer: UK Ministry of Defence : RAO CRP TD Electronic Systems
35// Contract: C/MAT/N03517
36//
37// This software is the intellectual property of QinetiQ Ltd, subject
38// DEFCON 705 IPR conditions.
39//
40// %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
41//
42// CHANGE HISTORY
43// --------------
44//
45// 31 October 2004, P R Truscott, QinetiQ Ltd, UK
46// Created.
47//
48// %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
49//
50// DESCRIPTION
51// -----------
52//
53//
54//
55///////////////////////////////////////////////////////////////////////////////
56//
57//
58#include "G4PolyhedronArbitrary.hh"
59///////////////////////////////////////////////////////////////////////////////
60//
61G4PolyhedronArbitrary::G4PolyhedronArbitrary (const G4int nVertices,
62 const G4int nFacets)
63{
64 AllocateMemory(nVertices, nFacets);
65 nVertexCount = 0;
66 nFacetCount = 0;
67}
68///////////////////////////////////////////////////////////////////////////////
69//
70G4PolyhedronArbitrary::~G4PolyhedronArbitrary ()
71{;}
72///////////////////////////////////////////////////////////////////////////////
73//
74void G4PolyhedronArbitrary::AddVertex (const G4ThreeVector v)
75{
76 if (nVertexCount == nvert + 1)
77 {
78 G4cerr <<G4endl;
79 G4cerr <<"ERROR IN G4PolyhedronArbitrary::AddVertex" <<G4endl;
80 G4cerr <<"ATTEMPT TO EXCEED MAXIMUM NUMBER OF VERTICES : " << nVertexCount
81 <<G4endl;
82 G4cerr <<G4endl;
83 }
84 else
85 {
86 nVertexCount++;
87 pV[nVertexCount] = v;
88 }
89}
90///////////////////////////////////////////////////////////////////////////////
91//
92void G4PolyhedronArbitrary::AddFacet (const G4int iv1, const G4int iv2,
93 const G4int iv3, const G4int iv4)
94{
95 if (nFacetCount == nface)
96 {
97 G4cerr <<G4endl;
98 G4cerr <<"ERROR IN G4PolyhedronArbitrary::AddFacet" <<G4endl;
99 G4cerr <<"ATTEMPT TO EXCEED MAXIMUM NUMBER OF FACETS : " << nFacetCount
100 <<G4endl;
101 G4cerr <<G4endl;
102 }
103 else if (iv1 < 1 || iv1 > nvert || iv2 < 1 || iv2 > nvert ||
104 iv3 < 1 || iv3 > nvert || iv4 > nvert)
105 {
106 G4cerr <<G4endl;
107 G4cerr <<"ERROR IN G4PolyhedronArbitrary::AddFacet" <<G4endl;
108 G4cerr <<"ATTEMPT TO INDEX VERTEX NUMBER WHICH IS OUT-OF-RANGE : " <<G4endl;
109 G4cerr <<G4endl;
110 }
111 else if (iv1 > nVertexCount || iv2 > nVertexCount || iv3 > nVertexCount ||
112 iv4 > nVertexCount)
113 {
114 G4cerr <<G4endl;
115 G4cerr <<"ERROR IN G4PolyhedronArbitrary::AddFacet" <<G4endl;
116 G4cerr <<"VERTEX NEEDS TO BE DEFINED FIRST : " <<G4endl;
117 G4cerr <<G4endl;
118 }
119 else
120 {
121 nFacetCount++;
122 pF[nFacetCount] = G4Facet(iv1, 0, iv2, 0, iv3, 0, iv4, 0);
123 }
124}
125///////////////////////////////////////////////////////////////////////////////
126//
Note: See TracBrowser for help on using the repository browser.