Import Geant4 11.2.0.beta source tree
This commit is contained in:
+12
-13
@@ -38,19 +38,18 @@ class G4VPhysicalVolume;
|
||||
|
||||
class ExGflash3ParallelWorld : public G4VUserParallelWorld
|
||||
{
|
||||
public:
|
||||
ExGflash3ParallelWorld(G4String aWorldName);
|
||||
~ExGflash3ParallelWorld();
|
||||
|
||||
virtual void Construct() final;
|
||||
virtual void ConstructSD() final;
|
||||
|
||||
const G4VPhysicalVolume* GetCristal(int aNumCrystal)
|
||||
{return fCrystalPhys[aNumCrystal];};
|
||||
|
||||
private:
|
||||
G4LogicalVolume* fCrystalLog;
|
||||
G4VPhysicalVolume* fCrystalPhys[100];
|
||||
public:
|
||||
ExGflash3ParallelWorld(G4String aWorldName);
|
||||
~ExGflash3ParallelWorld() override;
|
||||
|
||||
void Construct() final;
|
||||
void ConstructSD() final;
|
||||
|
||||
const G4VPhysicalVolume* GetCristal(int aNumCrystal) { return fCrystalPhys[aNumCrystal]; };
|
||||
|
||||
private:
|
||||
G4LogicalVolume* fCrystalLog{nullptr};
|
||||
G4VPhysicalVolume* fCrystalPhys[100]{};
|
||||
};
|
||||
|
||||
#endif
|
||||
|
||||
Reference in New Issue
Block a user