Geant4 9.6.0
Toolkit for the simulation of the passage of particles through matter
Loading...
Searching...
No Matches
G4gsvolu.cc File Reference
#include <iomanip>
#include "G3VolTable.hh"
#include "globals.hh"
#include "G3toG4.hh"
#include "G3toG4MakeSolid.hh"

Go to the source code of this file.

Functions

void PG4gsvolu (G4String *tokens)
 
G3VolTableEntryG4CreateVTE (G4String vname, G4String shape, G4int nmed, G4double rpar[], G4int npar)
 
void G4gsvolu (G4String vname, G4String shape, G4int nmed, G4double *rpar, G4int npar)
 

Function Documentation

◆ G4CreateVTE()

G3VolTableEntry * G4CreateVTE ( G4String  vname,
G4String  shape,
G4int  nmed,
G4double  rpar[],
G4int  npar 
)

Definition at line 51 of file G4gsvolu.cc.

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}
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)
bool G4bool
Definition: G4Types.hh:67
G3VolTableEntry * PutVTE(G3VolTableEntry *aVTE)
Definition: G3VolTable.cc:76

Referenced by G4gsvolu().

◆ G4gsvolu()

void G4gsvolu ( G4String  vname,
G4String  shape,
G4int  nmed,
G4double rpar,
G4int  npar 
)

Definition at line 73 of file G4gsvolu.cc.

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}
@ FatalException
G3VolTableEntry * G4CreateVTE(G4String vname, G4String shape, G4int nmed, G4double rpar[], G4int npar)
Definition: G4gsvolu.cc:51
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

Referenced by PG4gsvolu().

◆ PG4gsvolu()

void PG4gsvolu ( G4String tokens)

Definition at line 37 of file G4gsvolu.cc.

37 {
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}
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
double G4double
Definition: G4Types.hh:64
int G4int
Definition: G4Types.hh:66
void G4gsvolu(G4String vname, G4String shape, G4int nmed, G4double *rpar, G4int npar)
Definition: G4gsvolu.cc:73

Referenced by G3CLEval().