2022-05-18 20:01:10 +08:00
|
|
|
#ifndef DESCSS_VBodyFactory_h
|
|
|
|
#define DESCSS_VBodyFactory_h 1
|
2022-05-17 19:36:50 +08:00
|
|
|
|
|
|
|
#include "G4VPhysicalVolume.hh"
|
|
|
|
class G4VPhysicalVolume;
|
|
|
|
class G4VBodyFactory {
|
|
|
|
public:
|
|
|
|
G4VBodyFactory();
|
|
|
|
virtual ~G4VBodyFactory();
|
|
|
|
virtual G4VPhysicalVolume* CreateOrgan(const G4String& idFile, G4VPhysicalVolume* motherVolume,
|
|
|
|
const G4String& colour, G4bool solidFrame, G4bool sensitivity) = 0;
|
|
|
|
};
|
|
|
|
#endif
|