Geant4 11.3.0
Toolkit for the simulation of the passage of particles through matter
Loading...
Searching...
No Matches
G4Colour Class Reference

#include <G4Colour.hh>

Public Member Functions

 G4Colour (G4double r_=1., G4double g_=1., G4double b_=1., G4double a_=1.)
 
 G4Colour (G4ThreeVector)
 
 operator G4ThreeVector ()
 
G4bool operator!= (const G4Colour &c) const
 
G4bool operator== (const G4Colour &c) const
 
G4Colouroperator+= (const G4Colour &rhs)
 
G4double GetRed () const
 
G4double GetGreen () const
 
G4double GetBlue () const
 
G4double GetAlpha () const
 
void SetRed (G4double)
 
void SetGreen (G4double)
 
void SetBlue (G4double)
 
void SetAlpha (G4double)
 
G4bool operator< (const G4Colour &rhs) const
 

Static Public Member Functions

static G4Colour White ()
 
static G4Colour Gray ()
 
static G4Colour Grey ()
 
static G4Colour Black ()
 
static G4Colour Brown ()
 
static G4Colour Red ()
 
static G4Colour Green ()
 
static G4Colour Blue ()
 
static G4Colour Cyan ()
 
static G4Colour Magenta ()
 
static G4Colour Yellow ()
 
static G4bool GetColour (const G4String &key, G4Colour &result)
 
static G4bool GetColor (const G4String &key, G4Colour &result)
 
static void AddToMap (const G4String &key, const G4Colour &colour)
 
static void InitialiseColourMap ()
 
static const std::map< G4String, G4Colour > & GetMap ()
 

Friends

std::ostream & operator<< (std::ostream &os, const G4Colour &c)
 

Detailed Description

Definition at line 88 of file G4Colour.hh.

Constructor & Destructor Documentation

◆ G4Colour() [1/2]

G4Colour::G4Colour ( G4double r_ = 1.,
G4double g_ = 1.,
G4double b_ = 1.,
G4double a_ = 1. )

Definition at line 35 of file G4Colour.cc.

35 :
36red (r), green (gr), blue (b), alpha (a)
37{
38 if( red > 1.0 ){red = 1.0;} if( red < 0.0 ){red = 0.0;}
39 if( green > 1.0 ){green = 1.0;} if( green < 0.0 ){green = 0.0;}
40 if( blue > 1.0 ){blue = 1.0;} if( blue < 0.0 ){blue = 0.0;}
41 if( alpha > 1.0 ){alpha = 1.0;} if( alpha < 0.0 ){alpha = 0.0;}
42}

Referenced by AddToMap(), Black(), Blue(), Brown(), Cyan(), GetColor(), GetColour(), Gray(), Green(), Grey(), Magenta(), operator!=(), operator+=(), operator<(), operator<<, operator==(), Red(), White(), and Yellow().

◆ G4Colour() [2/2]

G4Colour::G4Colour ( G4ThreeVector v)

Definition at line 44 of file G4Colour.cc.

44 :
45red (v.x()), green (v.y()), blue (v.z()), alpha (1.)
46{
47 if( red > 1.0 ){red = 1.0;} if( red < 0.0 ){red = 0.0;}
48 if( green > 1.0 ){green = 1.0;} if( green < 0.0 ){green = 0.0;}
49 if( blue > 1.0 ){blue = 1.0;} if( blue < 0.0 ){blue = 0.0;}
50}
double z() const
double x() const
double y() const

Member Function Documentation

◆ AddToMap()

void G4Colour::AddToMap ( const G4String & key,
const G4Colour & colour )
static

Definition at line 106 of file G4Colour.cc.

107{
108 // Allow only master thread to populate the map
110 static G4bool first = true;
111 if (first) {
112 first = false;
114 ("G4Colour::AddToMap(const G4String& key, const G4Colour& colour)",
115 "greps0002", JustWarning,
116 "Attempt to add to colour map from non-master thread.");
117 }
118 return;
119 }
120
121 // Add standard colours to map
122 InitialiseColourMap(); // Initialises if not already initialised
123
124 // Convert to lower case since colour map is case insensitive
125 G4String myKey = G4StrUtil::to_lower_copy(key);
126
127 if (fColourMap.find(myKey) == fColourMap.end()) fColourMap[myKey] = colour;
128 else {
130 ed << "G4Colour with key " << myKey << " already exists." << G4endl;
132 ("G4Colour::AddToMap(const G4String& key, const G4Colour& colour)",
133 "greps0001", JustWarning, ed,
134 "Colour key exists");
135 }
136}
@ JustWarning
void G4Exception(const char *originOfException, const char *exceptionCode, G4ExceptionSeverity severity, const char *description)
std::ostringstream G4ExceptionDescription
bool G4bool
Definition G4Types.hh:86
#define G4endl
Definition G4ios.hh:67
static void InitialiseColourMap()
Definition G4Colour.cc:138
G4bool IsMasterThread()

Referenced by InitialiseColourMap().

◆ Black()

G4Colour G4Colour::Black ( )
inlinestatic

Definition at line 177 of file G4Colour.hh.

177{return G4Colour(0.0, 0.0, 0.0);}
G4Colour(G4double r_=1., G4double g_=1., G4double b_=1., G4double a_=1.)
Definition G4Colour.cc:35

Referenced by InitialiseColourMap(), and G4VVisCommand::Twinkle().

◆ Blue()

G4Colour G4Colour::Blue ( )
inlinestatic

◆ Brown()

G4Colour G4Colour::Brown ( )
inlinestatic

Definition at line 178 of file G4Colour.hh.

178{return G4Colour(0.45,0.25,0.0);}

Referenced by InitialiseColourMap().

◆ Cyan()

G4Colour G4Colour::Cyan ( )
inlinestatic

Definition at line 182 of file G4Colour.hh.

182{return G4Colour(0.0, 1.0, 1.0);}

Referenced by InitialiseColourMap().

◆ GetAlpha()

◆ GetBlue()

G4double G4Colour::GetBlue ( ) const
inline

Definition at line 172 of file G4Colour.hh.

172{return blue;}

Referenced by G4HepRepFileSceneHandler::AddCompound(), G4GMocrenFileSceneHandler::AddPrimitive(), G4HepRepFileSceneHandler::AddPrimitive(), G4OpenInventorSceneHandler::AddPrimitive(), G4VtkStore::AddPrimitiveSeparate(), G4VtkStore::AddPrimitiveTensorGlyph(), G4VtkStore::AddPrimitiveTransformBake(), G4VtkViewer::AddViewHUD(), G4TheRayTracer::Attenuate(), G4ViewParameters::CameraAndLightingCommands(), G4Qt3DUtils::ConvertToQColor(), G4TheMTRayTracer::CreateBitMap(), G4OpenGLStoredViewer::DrawDisplayLists(), G4OpenGLQtViewer::DrawText(), G4OpenGLXViewer::DrawText(), G4ToolsSGViewer< tools::offscreen::session, tools::offscreen::sg_viewer >::Export(), G4VtkPolydataPolygonPipeline::G4VtkPolydataPolygonPipeline(), G4VtkPolydataPolyline2DPipeline::G4VtkPolydataPolyline2DPipeline(), G4VtkPolydataPolylinePipeline::G4VtkPolydataPolylinePipeline(), G4VtkPolydataSpherePipeline::G4VtkPolydataSpherePipeline(), G4VtkText2DPipeline::G4VtkText2DPipeline(), G4VtkTextPipeline::G4VtkTextPipeline(), G4TheRayTracer::GetMixedColour(), G4TheRayTracer::GetSurfaceColour(), G4VtkSceneHandler::MakeDefaultVisContext(), G4VtkPolydataInstanceAppendPipeline::MakeHash(), MakeHash(), std::hash< G4VisAttributes >::operator()(), G4OpenInventorQtViewer::SetView(), G4OpenInventorWinViewer::SetView(), G4OpenInventorXtExtendedViewer::SetView(), G4OpenInventorXtViewer::SetView(), G4ToolsSGViewer< tools::offscreen::session, tools::offscreen::sg_viewer >::SetView(), G4VtkViewer::SetView(), G4VtkViewer::ShowView(), and G4ViewParameters::TouchableCommands().

◆ GetColor()

G4bool G4Colour::GetColor ( const G4String & key,
G4Colour & result )
inlinestatic

Definition at line 186 of file G4Colour.hh.

187{return G4Colour::GetColour(key, result);}
static G4bool GetColour(const G4String &key, G4Colour &result)
Definition G4Colour.cc:158

◆ GetColour()

G4bool G4Colour::GetColour ( const G4String & key,
G4Colour & result )
static

Definition at line 158 of file G4Colour.cc.

163{
164 // Add standard colours to map
165 InitialiseColourMap(); // Initialises if not already initialised
166
167 G4String myKey = G4StrUtil::to_lower_copy(key);
168
169 // NOLINTNEXTLINE(modernize-use-auto): Explicitly want a const_iterator
170 std::map<G4String, G4Colour>::const_iterator iter = fColourMap.find(myKey);
171
172 // Don't modify "result" if colour was not found in map
173 if (iter == fColourMap.cend()) {
175 ed << "Colour \"" << key << "\" not found. No action taken.";
176 G4Exception("G4Colour::GetColour", "greps0003", JustWarning, ed);
177 return false;
178 }
179
180 result = iter->second;
181
182 return true;
183}

Referenced by G4ViewParameters::CameraAndLightingCommands(), G4AxesModel::Construct(), G4VVisCommand::ConvertToColour(), GetColor(), G4ModelColourMap< T >::Set(), G4TrajectoryDrawByEncounteredVolume::SetDefault(), G4TrajectoryDrawByOriginVolume::SetDefault(), G4TrajectoryDrawByParticleID::SetDefault(), G4ModelCmdApplyColour< M >::SetNewValue(), and G4ModelCmdApplyStringColour< M >::SetNewValue().

◆ GetGreen()

G4double G4Colour::GetGreen ( ) const
inline

Definition at line 171 of file G4Colour.hh.

171{return green;}

Referenced by G4HepRepFileSceneHandler::AddCompound(), G4GMocrenFileSceneHandler::AddPrimitive(), G4HepRepFileSceneHandler::AddPrimitive(), G4OpenInventorSceneHandler::AddPrimitive(), G4VtkStore::AddPrimitiveSeparate(), G4VtkStore::AddPrimitiveTensorGlyph(), G4VtkStore::AddPrimitiveTransformBake(), G4VtkViewer::AddViewHUD(), G4TheRayTracer::Attenuate(), G4ViewParameters::CameraAndLightingCommands(), G4Qt3DUtils::ConvertToQColor(), G4TheMTRayTracer::CreateBitMap(), G4OpenGLStoredViewer::DrawDisplayLists(), G4OpenGLQtViewer::DrawText(), G4OpenGLXViewer::DrawText(), G4ToolsSGViewer< tools::offscreen::session, tools::offscreen::sg_viewer >::Export(), G4VtkPolydataPolygonPipeline::G4VtkPolydataPolygonPipeline(), G4VtkPolydataPolyline2DPipeline::G4VtkPolydataPolyline2DPipeline(), G4VtkPolydataPolylinePipeline::G4VtkPolydataPolylinePipeline(), G4VtkPolydataSpherePipeline::G4VtkPolydataSpherePipeline(), G4VtkText2DPipeline::G4VtkText2DPipeline(), G4VtkTextPipeline::G4VtkTextPipeline(), G4TheRayTracer::GetMixedColour(), G4TheRayTracer::GetSurfaceColour(), G4VtkSceneHandler::MakeDefaultVisContext(), G4VtkPolydataInstanceAppendPipeline::MakeHash(), MakeHash(), std::hash< G4VisAttributes >::operator()(), G4OpenInventorQtViewer::SetView(), G4OpenInventorWinViewer::SetView(), G4OpenInventorXtExtendedViewer::SetView(), G4OpenInventorXtViewer::SetView(), G4ToolsSGViewer< tools::offscreen::session, tools::offscreen::sg_viewer >::SetView(), G4VtkViewer::SetView(), G4VtkViewer::ShowView(), and G4ViewParameters::TouchableCommands().

◆ GetMap()

const std::map< G4String, G4Colour > & G4Colour::GetMap ( )
static

Definition at line 185 of file G4Colour.cc.

186{
187 // Add standard colours to map
188 InitialiseColourMap(); // Initialises if not already initialised
189
190 return fColourMap;
191}

Referenced by operator<<.

◆ GetRed()

G4double G4Colour::GetRed ( ) const
inline

Definition at line 170 of file G4Colour.hh.

170{return red;}

Referenced by G4HepRepFileSceneHandler::AddCompound(), G4GMocrenFileSceneHandler::AddPrimitive(), G4HepRepFileSceneHandler::AddPrimitive(), G4OpenInventorSceneHandler::AddPrimitive(), G4VtkStore::AddPrimitiveSeparate(), G4VtkStore::AddPrimitiveTensorGlyph(), G4VtkStore::AddPrimitiveTransformBake(), G4VtkViewer::AddViewHUD(), G4TheRayTracer::Attenuate(), G4ViewParameters::CameraAndLightingCommands(), G4Qt3DUtils::ConvertToQColor(), G4TheMTRayTracer::CreateBitMap(), G4OpenGLStoredViewer::DrawDisplayLists(), G4OpenGLQtViewer::DrawText(), G4OpenGLXViewer::DrawText(), G4ToolsSGViewer< tools::offscreen::session, tools::offscreen::sg_viewer >::Export(), G4VtkPolydataPolygonPipeline::G4VtkPolydataPolygonPipeline(), G4VtkPolydataPolyline2DPipeline::G4VtkPolydataPolyline2DPipeline(), G4VtkPolydataPolylinePipeline::G4VtkPolydataPolylinePipeline(), G4VtkPolydataSpherePipeline::G4VtkPolydataSpherePipeline(), G4VtkText2DPipeline::G4VtkText2DPipeline(), G4VtkTextPipeline::G4VtkTextPipeline(), G4TheRayTracer::GetMixedColour(), G4TheRayTracer::GetSurfaceColour(), G4VtkSceneHandler::MakeDefaultVisContext(), G4VtkPolydataInstanceAppendPipeline::MakeHash(), MakeHash(), std::hash< G4VisAttributes >::operator()(), G4OpenInventorQtViewer::SetView(), G4OpenInventorWinViewer::SetView(), G4OpenInventorXtExtendedViewer::SetView(), G4OpenInventorXtViewer::SetView(), G4ToolsSGViewer< tools::offscreen::session, tools::offscreen::sg_viewer >::SetView(), G4VtkViewer::SetView(), G4VtkViewer::ShowView(), and G4ViewParameters::TouchableCommands().

◆ Gray()

G4Colour G4Colour::Gray ( )
inlinestatic

Definition at line 175 of file G4Colour.hh.

175{return G4Colour(0.5, 0.5, 0.5);}

Referenced by InitialiseColourMap().

◆ Green()

G4Colour G4Colour::Green ( )
inlinestatic

◆ Grey()

G4Colour G4Colour::Grey ( )
inlinestatic

Definition at line 176 of file G4Colour.hh.

176{return G4Colour(0.5, 0.5, 0.5);}

Referenced by InitialiseColourMap().

◆ InitialiseColourMap()

void G4Colour::InitialiseColourMap ( )
static

Definition at line 138 of file G4Colour.cc.

139{
140 if (fInitColourMap) return;
141
142 fInitColourMap = true;
143
144 // Standard colours
145 AddToMap("white", G4Colour::White());
146 AddToMap("grey", G4Colour::Grey());
147 AddToMap("gray", G4Colour::Gray());
148 AddToMap("black", G4Colour::Black());
149 AddToMap("brown", G4Colour::Brown());
150 AddToMap("red", G4Colour::Red());
151 AddToMap("green", G4Colour::Green());
152 AddToMap("blue", G4Colour::Blue());
153 AddToMap("cyan", G4Colour::Cyan());
154 AddToMap("magenta", G4Colour::Magenta());
155 AddToMap("yellow", G4Colour::Yellow());
156}
static G4Colour White()
Definition G4Colour.hh:174
static G4Colour Yellow()
Definition G4Colour.hh:184
static G4Colour Green()
Definition G4Colour.hh:180
static void AddToMap(const G4String &key, const G4Colour &colour)
Definition G4Colour.cc:106
static G4Colour Red()
Definition G4Colour.hh:179
static G4Colour Brown()
Definition G4Colour.hh:178
static G4Colour Grey()
Definition G4Colour.hh:176
static G4Colour Black()
Definition G4Colour.hh:177
static G4Colour Magenta()
Definition G4Colour.hh:183
static G4Colour Blue()
Definition G4Colour.hh:181
static G4Colour Gray()
Definition G4Colour.hh:175
static G4Colour Cyan()
Definition G4Colour.hh:182

Referenced by AddToMap(), GetColour(), and GetMap().

◆ Magenta()

G4Colour G4Colour::Magenta ( )
inlinestatic

Definition at line 183 of file G4Colour.hh.

183{return G4Colour(1.0, 0.0, 1.0);}

Referenced by InitialiseColourMap().

◆ operator G4ThreeVector()

G4Colour::operator G4ThreeVector ( )

Definition at line 76 of file G4Colour.cc.

76 {
77 return G4ThreeVector(red,green,blue);
78}
CLHEP::Hep3Vector G4ThreeVector

◆ operator!=()

G4bool G4Colour::operator!= ( const G4Colour & c) const

Definition at line 96 of file G4Colour.cc.

96 {
97 return (red != c.red) ||
98 (green != c.green) ||
99 (blue != c.blue) ||
100 (alpha != c.alpha);
101}

Referenced by operator==().

◆ operator+=()

G4Colour & G4Colour::operator+= ( const G4Colour & rhs)
inline

Definition at line 107 of file G4Colour.hh.

107{*this = rhs; return *this;}

◆ operator<()

G4bool G4Colour::operator< ( const G4Colour & rhs) const

Definition at line 193 of file G4Colour.cc.

194{
195 if (red < rhs.red) return true;
196 if (red == rhs.red) {
197 if (green < rhs.green) return true;
198 if (green == rhs.green) {
199 if (blue < rhs.blue) return true;
200 if (blue == rhs.blue) {
201 if (alpha < rhs.alpha) return true;
202 }
203 }
204 }
205 return false;
206}

◆ operator==()

G4bool G4Colour::operator== ( const G4Colour & c) const
inline

Definition at line 105 of file G4Colour.hh.

105{return !(operator != (c));}
G4bool operator!=(const G4Colour &c) const
Definition G4Colour.cc:96

◆ Red()

◆ SetAlpha()

void G4Colour::SetAlpha ( G4double a)

Definition at line 70 of file G4Colour.cc.

71{
72 alpha = a;
73 if( alpha > 1.0 ){alpha = 1.0;} if( alpha < 0.0 ){alpha = 0.0;}
74}

Referenced by G4VVisCommand::ConvertToColour().

◆ SetBlue()

void G4Colour::SetBlue ( G4double b)

Definition at line 64 of file G4Colour.cc.

65{
66 blue = b;
67 if( blue > 1.0 ){blue = 1.0;} if( blue < 0.0 ){blue = 0.0;}
68}

◆ SetGreen()

void G4Colour::SetGreen ( G4double gr)

Definition at line 58 of file G4Colour.cc.

59{
60 green = gr;
61 if( green > 1.0 ){green = 1.0;} if( green < 0.0 ){green = 0.0;}
62}

◆ SetRed()

void G4Colour::SetRed ( G4double r)

Definition at line 52 of file G4Colour.cc.

53{
54 red = r;
55 if( red > 1.0 ){red = 1.0;} if( red < 0.0 ){red = 0.0;}
56}

◆ White()

G4Colour G4Colour::White ( )
inlinestatic

Definition at line 174 of file G4Colour.hh.

174{return G4Colour(1.0, 1.0, 1.0);}

Referenced by InitialiseColourMap(), G4TrajectoryDrawByParticleID::SetDefault(), and G4VVisCommand::Twinkle().

◆ Yellow()

G4Colour G4Colour::Yellow ( )
inlinestatic

Definition at line 184 of file G4Colour.hh.

184{return G4Colour(1.0, 1.0, 0.0);}

Referenced by InitialiseColourMap().

Friends And Related Symbol Documentation

◆ operator<<

std::ostream & operator<< ( std::ostream & os,
const G4Colour & c )
friend

Definition at line 80 of file G4Colour.cc.

80 {
81 os << '(' << c.red << ',' << c.green << ',' << c.blue
82 << ',' << c.alpha << ')';
83 const std::map<G4String, G4Colour>& colourMap = G4Colour::GetMap();
84 // Reverse iterator to pick up English spelling of grey!! :)
85 std::map<G4String, G4Colour>::const_reverse_iterator ri;
86 for (ri = colourMap.rbegin(); ri != colourMap.rend(); ++ri) {
87 if (c == ri->second) {
88 os << " (" << ri->first << ')';
89 break;
90 }
91 }
92
93 return os;
94}
static const std::map< G4String, G4Colour > & GetMap()
Definition G4Colour.cc:185

The documentation for this class was generated from the following files: