Class Reference for E1039 Core & Analysis Software
PHG4Utils.cc
Go to the documentation of this file.
1 #include "PHG4Utils.h"
2 
3 #include <Geant4/G4VisAttributes.hh>
4 
5 #include <cmath>
6 
7 using namespace std;
8 
9 double PHG4Utils::_eta_coverage = 1.;
10 
11 double
12 PHG4Utils::GetLengthForRapidityCoverage( const double radius, const double eta )
13 {
14  double length;
15  double theta = 2.0 * std::atan(std::exp(-eta) );
16  length = radius / std::tan(theta);
17  return length;
18 }
19 
20 double
22 {
23  return GetLengthForRapidityCoverage(radius, _eta_coverage);
24 }
25 
26 void
28 {
29  _eta_coverage = eta;
30 }
31 
32 double
33 PHG4Utils::get_theta(const double eta)
34 {
35  double theta = 2*atan(exp(-eta));
36  return theta;
37 }
38 
39 double
40 PHG4Utils::get_eta(const double theta)
41 {
42  double eta = -log(tan(theta / 2.));
43  return eta;
44 }
45 
46 pair<double, double>
47 PHG4Utils::get_etaphi(const double x, const double y, const double z)
48 {
49  double eta;
50  double phi;
51  double radius;
52  double theta;
53  radius = sqrt(x * x + y * y);
54  phi = atan2(y, x);
55  theta = atan2(radius, z);
56  eta = -log(tan(theta / 2.));
57  return make_pair(eta, phi);
58 }
59 
60 double
61 PHG4Utils::get_eta(const double radius, const double z)
62 {
63  double eta;
64  double theta;
65  theta = atan2(radius, fabs(z));
66  eta = -log(tan(theta / 2.));
67  if (z < 0)
68  {
69  eta = -eta;
70  }
71  return eta;
72 }
73 
74 void
75 PHG4Utils::SetColour(G4VisAttributes* att, const string &material)
76 {
77  if (!att)
78  {
79  cout << "G4VisAttributes pointer is NULL" << endl;
80  return;
81  }
82  if (material == "AL_BABAR_MAG")
83  {
84  att->SetColour(G4Colour::Blue());
85  }
86  else if (material == "BlackHole")
87  {
88  att->SetColour(G4Colour::Black());
89  }
90  else if (material == "C4F10")
91  {
92  att->SetColour(0.,0.,0.5,0.25);
93  }
94  else if (material == "CF4")
95  {
96  att->SetColour(G4Colour::Magenta());
97  }
98  else if (material == "G4_AIR")
99  {
100  att->SetColour(G4Colour::Black());
101  }
102  else if (material == "G4_Al")
103  {
104  att->SetColour(G4Colour::Blue());
105  }
106  else if (material == "G4_Au")
107  {
108  att->SetColour(G4Colour::Yellow());
109  }
110  else if (material == "G4_CARBON_DIOXIDE")
111  {
112  att->SetColour(G4Colour::Green());
113  }
114  else if (material == "G4_CELLULOSE_CELLOPHANE")
115  {
116  att->SetColour(0.25,0.25,0.);
117  }
118  else if (material == "G4_Cu")
119  {
120  att->SetColour(1.,0.51,0.278);
121  }
122  else if (material == "G4_Fe")
123  {
124  att->SetColour(0.29,0.44,0.54);
125  }
126  else if (material == "G4_KAPTON")
127  {
128  att->SetColour(G4Colour::Yellow());
129  }
130  else if (material == "G4_MYLAR")
131  {
132  att->SetColour(0.5,0.5,0.5,0.25);
133  }
134  else if (material == "G4_METHANE")
135  {
136  att->SetColour(0.,1.,1.,0.25);
137  }
138  else if (material == "G4_Si")
139  {
140  att->SetColour(G4Colour::Yellow());
141  }
142  else if (material == "G4_TEFLON")
143  {
144  att->SetColour(G4Colour::White());
145  }
146  else if (material == "G4_W")
147  {
148  att->SetColour(0.36, 0.36, 0.36);
149  }
150  else if (material == "Quartz")
151  {
152  att->SetColour(G4Colour::Green());
153  }
154  else if (material == "Scintillator" || material == "G4_POLYSTYRENE")
155  {
156  att->SetColour(0.,1.,1.);
157  }
158  else if (material == "W_Epoxy")
159  {
160  att->SetColour(0.5,0.5,0.5);
161  }
162  else if (material == "G10")
163  {
164  att->SetColour(1.,1.,0.,0.5);
165  }
166  else
167  {
168  //cout << "default color red for material " << material << endl;
169  att->SetColour(G4Colour::Cyan());
170  }
171  return;
172 }
static void SetColour(G4VisAttributes *att, const std::string &mat)
Definition: PHG4Utils.cc:75
static double get_eta(const double theta)
Definition: PHG4Utils.cc:40
static double GetLengthForRapidityCoverage(const double radius, const double eta)
Definition: PHG4Utils.cc:12
static void SetPseudoRapidityCoverage(const double eta)
Definition: PHG4Utils.cc:27
static std::pair< double, double > get_etaphi(const double x, const double y, const double z)
Definition: PHG4Utils.cc:47
static double get_theta(const double eta)
Definition: PHG4Utils.cc:33