Geant4  v4-10.4-release
 모두 클래스 네임스페이스들 파일들 함수 변수 타입정의 열거형 타입 열거형 멤버 Friends 매크로 그룹들 페이지들
CCalVisualisable.hh
이 파일의 문서화 페이지로 가기
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 //
27 // File: CCalVisualisable.hh
28 // Description: Sets visualisable attributes from the information in flat file
30 #ifndef CCalVisualisable_hh
31 #define CCalVisualisable_hh 1
32 
33 #include "globals.hh"
34 
35 #if __SUNPRO_CC==0x420
36  typedef G4bool bool;
37 #endif
38 
40 public:
41 
42  //Here we define the different type of volumes we consider.
43  enum visType {Sensitive=0,
46  Cable=3,
51  Undefined=-1};
52 
53 private:
54 
55  //This class groups the important visualization parameters.
56  class visParameters {
57  public:
58  visParameters(bool v=false, double r=1,double g=1,double b=1, bool w=true):
59  visibility(v),rColor(r),gColor(g),bColor(b),wireframe(w) {}
60  bool visibility;
61  double rColor;
62  double gColor;
63  double bColor;
64  bool wireframe;
65  };
66 
67 public:
68  //Constructs this object from this file
70 
71  virtual ~CCalVisualisable() {}
72 
73  //Reads this object from file
74  bool readFile(G4String file);
75 
76  //Sets visibility to true for Sensitive and to false otherwise.
77  void setDefault();
78 
79  //Get & Set methods.
80  bool isVisible (visType v) const {return theParameters[v].visibility;}
81  void setVisible(visType v, bool flag=true){theParameters[v].visibility=flag;}
82 
83  double colorRed (visType v) const {return theParameters[v].rColor;}
84  double colorGreen(visType v) const {return theParameters[v].gColor;}
85  double colorBlue (visType v) const {return theParameters[v].bColor;}
86  void setColorRed (visType v, double r) {theParameters[v].rColor=r;}
87  void setColorGreen(visType v, double g) {theParameters[v].gColor=g;}
88  void setColorBlue (visType v, double b) {theParameters[v].bColor=b;}
89  void setColor(visType v, double r, double g, double b);
90 
91  bool isWireFrame (visType v) const {return theParameters[v].wireframe;}
92  void setWireFrame(visType v, bool wf=true){theParameters[v].wireframe=wf;}
93 
94 
95 
96 protected:
97  //Read this object from visFile
98  static void setPath();
99  bool readFile();
100 
101 private:
102  static const char* pathName; //Path in which to look for files
103  G4String visFile; //File with visualization info
104  visParameters theParameters[TotalVisTypes]; //Visualisation parameters
105 
106  double checkColorRange(double color, char type) const;
107 };
108 
109 #endif
110 
111 
112 
bool isVisible(visType v) const
visParameters theParameters[TotalVisTypes]
double checkColorRange(double color, char type) const
double colorRed(visType v) const
void setColor(visType v, double r, double g, double b)
CCalVisualisable(G4String file)
double colorGreen(visType v) const
void setColorBlue(visType v, double b)
static constexpr double g
Definition: G4SIunits.hh:183
bool G4bool
Definition: G4Types.hh:79
virtual ~CCalVisualisable()
static const char * pathName
void setColorRed(visType v, double r)
void setVisible(visType v, bool flag=true)
bool isWireFrame(visType v) const
TFile * file
void setColorGreen(visType v, double g)
double colorBlue(visType v) const
visParameters(bool v=false, double r=1, double g=1, double b=1, bool w=true)
static void setPath()
void setWireFrame(visType v, bool wf=true)