Geant4.10
 All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
G4VScoreColorMap.hh
Go to the documentation of this file.
1 //
2 // ********************************************************************
3 // * License and Disclaimer *
4 // * *
5 // * The Geant4 software is copyright of the Copyright Holders of *
6 // * the Geant4 Collaboration. It is provided under the terms and *
7 // * conditions of the Geant4 Software License, included in the file *
8 // * LICENSE and available at http://cern.ch/geant4/license . These *
9 // * include a list of copyright holders. *
10 // * *
11 // * Neither the authors of this software system, nor their employing *
12 // * institutes,nor the agencies providing financial support for this *
13 // * work make any representation or warranty, express or implied, *
14 // * regarding this software system or assume any liability for its *
15 // * use. Please see the license in the file LICENSE and URL above *
16 // * for the full disclaimer and the limitation of liability. *
17 // * *
18 // * This code implementation is the result of the scientific and *
19 // * technical work of the GEANT4 collaboration. *
20 // * By using, copying, modifying or distributing the software (or *
21 // * any work based on the software) you agree to acknowledge its *
22 // * use in resulting scientific publications, and indicate your *
23 // * acceptance of all terms of the Geant4 Software license. *
24 // ********************************************************************
25 //
26 //
27 // $Id: G4VScoreColorMap.hh 67992 2013-03-13 10:59:57Z gcosmo $
28 //
29 
30 #ifndef G4VScoreColorMap_h
31 #define G4VScoreColorMap_h 1
32 
33 #include "globals.hh"
34 
35 class G4VVisManager;
36 
38 {
39  public:
41  virtual ~G4VScoreColorMap();
42 
43  public:
44  virtual void GetMapColor(G4double val, G4double color[4]) = 0;
45 
46  public:
47  inline G4String GetName() const
48  { return fName; }
49  inline void SetFloatingMinMax(G4bool vl=true)
50  { ifFloat = vl; }
51  inline G4bool IfFloatMinMax() const
52  { return ifFloat; }
53  inline void SetMinMax(G4double minVal, G4double maxVal)
54  {
55  if(minVal >= maxVal)
56  { G4cerr << "WARNING: G4VScoreColoMap::SetMinMax() : minimum is larger than or equal to maximum. Verify values you set, ["
57  << minVal << ", " << maxVal << "]" << G4endl;
58  fMinVal = maxVal; fMaxVal = minVal;
59  }
60  else {
61  fMinVal = minVal; fMaxVal = maxVal;
62  }
63  }
64  inline G4double GetMin() const
65  { return fMinVal; }
66  inline G4double GetMax() const
67  { return fMaxVal; }
68 
69  // draw a color chart
70  virtual void DrawColorChart(G4int nPoint = 5);
71 
72  virtual void DrawColorChartBar(G4int nPoint);
73 
74  virtual void DrawColorChartText(G4int nPoint);
75 
76 
77  void SetPSUnit(G4String & unit) {fPSUnit = unit;}
78  void SetPSName(G4String & psName) {fPSName = psName;}
79 
80  protected:
88 };
89 
90 #endif
91 
virtual void DrawColorChartText(G4int nPoint)
void SetPSName(G4String &psName)
G4VVisManager * fVisManager
void SetPSUnit(G4String &unit)
virtual void GetMapColor(G4double val, G4double color[4])=0
G4double GetMax() const
int G4int
Definition: G4Types.hh:78
G4VScoreColorMap(G4String mName)
G4String GetName() const
void SetMinMax(G4double minVal, G4double maxVal)
bool G4bool
Definition: G4Types.hh:79
virtual ~G4VScoreColorMap()
virtual void DrawColorChartBar(G4int nPoint)
void SetFloatingMinMax(G4bool vl=true)
G4bool IfFloatMinMax() const
#define G4endl
Definition: G4ios.hh:61
double G4double
Definition: G4Types.hh:76
G4double GetMin() const
G4GLOB_DLL std::ostream G4cerr
virtual void DrawColorChart(G4int nPoint=5)