Geant4.10
 All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
Functions
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

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

Definition at line 51 of file G4gsvolu.cc.

References G3toG4MakeSolid(), G3Vol, and G3VolTable::PutVTE().

Referenced by G4gsvolu().

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 }
bool G4bool
Definition: G4Types.hh:79
G4VSolid * G3toG4MakeSolid(const G4String &vname, const G4String &shape, const G4double *Rpar, const G4int npar, G4bool &NegVolPars, G4bool &Deferred, G4bool *OKAxis)
G3VolTableEntry * PutVTE(G3VolTableEntry *aVTE)
Definition: G3VolTable.cc:76
G3G4DLL_API G3VolTable G3Vol
Definition: clparse.cc:54
void G4gsvolu ( G4String  vname,
G4String  shape,
G4int  nmed,
G4double rpar,
G4int  npar 
)

Definition at line 73 of file G4gsvolu.cc.

References FatalException, G3Vol, G4CreateVTE(), G4Exception(), and G3VolTable::GetVTE().

Referenced by PG4gsvolu().

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 }
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
G3G4DLL_API G3VolTable G3Vol
Definition: clparse.cc:54
G3VolTableEntry * G4CreateVTE(G4String vname, G4String shape, G4int nmed, G4double rpar[], G4int npar)
Definition: G4gsvolu.cc:51
void PG4gsvolu ( G4String tokens)

Definition at line 37 of file G4gsvolu.cc.

References G3fillParams(), G4gsvolu(), Ipar, PTgsvolu, Rpar, and Spar.

Referenced by G3CLEval().

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 G4double Rpar[1000]
Definition: clparse.cc:67
void G3fillParams(G4String *tokens, const char *ptypes)
Definition: clparse.cc:219
int G4int
Definition: G4Types.hh:78
#define PTgsvolu
Definition: G3toG4.hh:52
G3G4DLL_API G4String Spar[1000]
Definition: clparse.cc:68
void G4gsvolu(G4String vname, G4String shape, G4int nmed, G4double *rpar, G4int npar)
Definition: G4gsvolu.cc:73
G3G4DLL_API G4int Ipar[1000]
Definition: clparse.cc:66
double G4double
Definition: G4Types.hh:76