Geant4-11
Functions
G4gsdetv.cc File Reference
#include "G4ios.hh"
#include "G3toG4.hh"
#include "G3DetTable.hh"
#include "G3VolTable.hh"

Go to the source code of this file.

Functions

void G4gsdetv (G4String, G4String, G4int, G4int, G4int)
 
void PG4gsdetv (G4String *tokens)
 

Function Documentation

◆ G4gsdetv()

void G4gsdetv ( G4String  chset,
G4String  chdet,
G4int  idtyp,
G4int  nwhi,
G4int  nwdi 
)

Definition at line 50 of file G4gsdetv.cc.

51{
52 G4cout << "G4gsdetv not currently implemented." << G4endl;
53 /*
54 // get lvol for detector chdet
55 G4LogicalVolume *lvol = G3Vol.GetLV(chdet);
56 if (lvol == 0) {
57 G4cout << "G4gsdetv: Logical volume " << chdet << " not available. Skip." << G4endl;
58 return;
59 }
60 // Generate a sensitive detector structure
61 // G4VSensitiveDetector *sdet;
62 // $$$ G4VSensitiveDetector *sdet = new G4VSensitiveDetector(chset);
63 // inform the logical volume of its sensitive detector
64 // lvol->SetSensitiveDetector(sdet);
65 // $$$ sdet->SetID(idtyp);
66 // Add the sensitive detector to the table
67 // G3Det.put(chset,idtyp,sdet);
68 */
69}
#define G4endl
Definition: G4ios.hh:57
G4GLOB_DLL std::ostream G4cout

References G4cout, and G4endl.

Referenced by G4gsdet(), G4gsdeta(), and PG4gsdetv().

◆ PG4gsdetv()

void PG4gsdetv ( G4String tokens)

Definition at line 35 of file G4gsdetv.cc.

36{
37 // fill the parameter containers
38 G3fillParams(tokens,PTgsdetv);
39
40 // interpret the parameters
41 G4String chset = Spar[0];
42 G4String chdet = Spar[1];
43 G4int idtyp = Ipar[0];
44 G4int nwhi = Ipar[1];
45 G4int nwdi = Ipar[2];
46
47 G4gsdetv(chset,chdet,idtyp,nwhi,nwdi);
48}
G3G4DLL_API G4int Ipar[1000]
Definition: clparse.cc:65
void G3fillParams(G4String *tokens, const char *ptypes)
Definition: clparse.cc:218
G3G4DLL_API G4String Spar[1000]
Definition: clparse.cc:67
#define PTgsdetv
Definition: G3toG4.hh:69
int G4int
Definition: G4Types.hh:85
void G4gsdetv(G4String, G4String, G4int, G4int, G4int)
Definition: G4gsdetv.cc:50

References G3fillParams(), G4gsdetv(), Ipar, PTgsdetv, and Spar.

Referenced by G3CLEval().