32 lines
585 B
C++
32 lines
585 B
C++
#ifndef G4HumanPhantomColour_H
|
|
#define G4HumanPhantomColour_H 1
|
|
|
|
#include "G4Colour.hh"
|
|
#include "globals.hh"
|
|
|
|
class G4Colour;
|
|
class G4HumanPhantomColour {
|
|
public:
|
|
G4HumanPhantomColour();
|
|
~G4HumanPhantomColour();
|
|
|
|
public:
|
|
// void DefineColour();
|
|
G4Colour GetColour(const G4String&); // returns the colour
|
|
|
|
private:
|
|
G4Colour white;
|
|
G4Colour pink;
|
|
G4Colour grey;
|
|
G4Colour yellow;
|
|
G4Colour blue;
|
|
G4Colour lightBlue;
|
|
G4Colour green;
|
|
G4Colour brown;
|
|
G4Colour purple;
|
|
G4Colour red;
|
|
G4Colour orange;
|
|
G4Colour black;
|
|
};
|
|
#endif
|