Import Geant4 11.2.0.beta source tree

This commit is contained in:
Gabriele Cosmo
2023-06-30 09:09:57 +02:00
parent aef78ca386
commit dd1f179cda
3780 changed files with 212808 additions and 142780 deletions
@@ -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