2022-05-18 20:01:10 +08:00
|
|
|
#ifndef DESCSS_FemaleBuilder_h
|
|
|
|
#define DESCSS_FemaleBuilder_h 1
|
2022-05-17 19:36:50 +08:00
|
|
|
|
|
|
|
#include "G4PhantomBuilder.h"
|
|
|
|
|
|
|
|
class G4FemaleBuilder : public G4PhantomBuilder {
|
|
|
|
public:
|
|
|
|
G4FemaleBuilder();
|
|
|
|
~G4FemaleBuilder();
|
|
|
|
|
|
|
|
void BuildLeftBreast(const G4String&, G4bool, G4bool);
|
|
|
|
void BuildRightBreast(const G4String&, G4bool, G4bool);
|
|
|
|
void BuildLeftOvary(const G4String&, G4bool, G4bool);
|
|
|
|
void BuildRightOvary(const G4String&, G4bool, G4bool);
|
|
|
|
void BuildUterus(const G4String&, G4bool, G4bool);
|
|
|
|
};
|
|
|
|
#endif
|