#include "G3toG4.hh"
#include "G3VolTable.hh"
Go to the source code of this file.
Functions | |
void | PG4gstpar (G4String *tokens) |
void | G4gstpar (G4int, G4String, G4double) |
Definition at line 45 of file G4gstpar.cc.
References G4cerr, and G4endl.
Referenced by PG4gstpar().
00046 { 00047 // set special tracking medium parameter. Apply to all logical 00048 // volumes making use of the specified tracking medium. 00049 G4cerr << "G4gstpar: not implemented." << G4endl; 00050 }
void PG4gstpar | ( | G4String * | tokens | ) |
Definition at line 32 of file G4gstpar.cc.
References G3fillParams(), G4gstpar(), Ipar, PTgstpar, Rpar, and Spar.
Referenced by G3CLEval().
00033 { 00034 // fill the parameter containers 00035 G3fillParams(tokens,PTgstpar); 00036 00037 // interpret the parameters 00038 G4String chpar = Spar[0]; 00039 G4int itmed = Ipar[0]; 00040 G4double parval = Rpar[0]; 00041 00042 G4gstpar(itmed,chpar,parval); 00043 }