G4-DESCSS/include/G4HumanPhantomColour.h

32 lines
626 B
C++

#ifndef DESCSS_HumanPhantomColour_H
#define DESCSS_HumanPhantomColour_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