Geant4 9.6.0
Toolkit for the simulation of the passage of particles through matter
Loading...
Searching...
No Matches
G4gsvolu.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$
28//
29// by I.Hrivnacova, 13.10.99
30
31#include <iomanip>
32#include "G3VolTable.hh"
33#include "globals.hh"
34#include "G3toG4.hh"
35#include "G3toG4MakeSolid.hh"
36
37void PG4gsvolu(G4String *tokens) {
38 // fill the parameter containers
39 G3fillParams(tokens,PTgsvolu);
40
41 // interpret the parameters
42 G4String vname = Spar[0];
43 G4String shape = Spar[1];
44 G4int nmed = Ipar[0];
45 G4int npar = Ipar[1];
46 G4double *pars = Rpar;
47
48 G4gsvolu(vname, shape, nmed, pars, npar);
49}
50
52 G4double rpar[], G4int npar)
53{
54 // create the solid
55 G4bool hasNegPars;
56 G4bool deferred;
57 G4bool okAxis[3];
58 G4VSolid* solid
59 = G3toG4MakeSolid(vname, shape, rpar, npar, hasNegPars, deferred, okAxis);
60
61 // if solid has been deferred
62 // VTE is created with hasNegPars = true
63 if (deferred) hasNegPars = true;
64
65 // create VTE
66 G3VolTableEntry* vte
67 = new G3VolTableEntry(vname, shape, rpar, npar, nmed, solid, hasNegPars);
68 G3Vol.PutVTE(vte);
69
70 return vte;
71}
72
73void G4gsvolu(G4String vname, G4String shape, G4int nmed, G4double* rpar,
74 G4int npar)
75{
76 /*
77 G4cout << "Creating logical volume " << vname << " shape " << shape
78 << " nmed " << nmed << " #pars "<< npar << " parameters (cm): ";
79 for (int ipar=0; ipar< npar; ipar++) G4cout << std::setw(8) << rpar[ipar];
80 G4cout << G4endl;
81 */
82 if (G3Vol.GetVTE(vname)) {
83 // abort if VTE with given name exists
84 G4String text = "G4gsvolu: Attempt to create volume " + vname + " twice.";
85 G4Exception("G4gsvolu()", "G3toG40024", FatalException, text);
86 return;
87 }
88 else {
89 G4CreateVTE(vname, shape, nmed, rpar, npar);
90 }
91}
G3G4DLL_API G3VolTable G3Vol
Definition: clparse.cc:54
G4VSolid * G3toG4MakeSolid(const G4String &vname, const G4String &shape, const G4double *Rpar, const G4int npar, G4bool &NegVolPars, G4bool &Deferred, G4bool *OKAxis)
G3G4DLL_API G4int Ipar[1000]
Definition: clparse.cc:66
void G3fillParams(G4String *tokens, const char *ptypes)
Definition: clparse.cc:219
G3G4DLL_API G4double Rpar[1000]
Definition: clparse.cc:67
#define PTgsvolu
Definition: G3toG4.hh:52
G3G4DLL_API G4String Spar[1000]
Definition: clparse.cc:68
@ FatalException
double G4double
Definition: G4Types.hh:64
int G4int
Definition: G4Types.hh:66
bool G4bool
Definition: G4Types.hh:67
void PG4gsvolu(G4String *tokens)
Definition: G4gsvolu.cc:37
void G4gsvolu(G4String vname, G4String shape, G4int nmed, G4double *rpar, G4int npar)
Definition: G4gsvolu.cc:73
G3VolTableEntry * G4CreateVTE(G4String vname, G4String shape, G4int nmed, G4double rpar[], G4int npar)
Definition: G4gsvolu.cc:51
G3VolTableEntry * PutVTE(G3VolTableEntry *aVTE)
Definition: G3VolTable.cc:76
G3VolTableEntry * GetVTE(const G4String &Vname)
Definition: G3VolTable.cc:54
void G4Exception(const char *originOfException, const char *exceptionCode, G4ExceptionSeverity severity, const char *comments)
Definition: G4Exception.cc:41