forked from root-project/root
-
Notifications
You must be signed in to change notification settings - Fork 0
/
TEveJetCone.cxx
248 lines (193 loc) · 7.66 KB
/
TEveJetCone.cxx
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
// @(#)root/eve:$Id$
// Author: Matevz Tadel, Jochen Thaeder 2009
/*************************************************************************
* Copyright (C) 1995-2007, Rene Brun and Fons Rademakers. *
* All rights reserved. *
* *
* For the licensing terms see $ROOTSYS/LICENSE. *
* For the list of contributors see $ROOTSYS/README/CREDITS. *
*************************************************************************/
#include "TEveJetCone.h"
#include "TEveTrans.h"
#include "TEveProjectionManager.h"
#include "TMath.h"
/** \class TEveJetCone
\ingroup TEve
Draws a jet cone with leading particle is specified in (eta,phi) and
cone radius is given.
If Apex is not set, default is (0.,0.,0.)
In case of cylinder was set, cone is cut at the cylinder edges.
Example :
~~~ {.cpp}
Float_t coneEta = r.Uniform(-0.9, 0.9);
Float_t conePhi = r.Uniform(0.0, TwoPi() );
Float_t coneRadius = 0.4;
TEveJetCone* jetCone = new TEveJetCone("JetCone");
jetCone->SetCylinder(250, 250);
if (jetCone->AddCone(coneEta, conePhi, coneRadius) != -1)
gEve->AddElement(jetCone);
~~~
#### Implementation notes
TEveVector fLimits encodes the following information:
- fY, fZ: barrel radius and endcap z-position;
if both are 0, fX encodes the spherical radius
- fX : scaling for length of the cone
*/
ClassImp(TEveJetCone);
////////////////////////////////////////////////////////////////////////////////
/// Constructor.
TEveJetCone::TEveJetCone(const Text_t* n, const Text_t* t) :
TEveShape(n, t),
fApex(),
fLimits(), fThetaC(10),
fEta(0), fPhi(0), fDEta(0), fDPhi(0), fNDiv(72)
{
fColor = kGreen;
}
////////////////////////////////////////////////////////////////////////////////
/// Compute bounding-box of the data.
void TEveJetCone::ComputeBBox()
{
BBoxInit();
BBoxCheckPoint(fApex);
BBoxCheckPoint(CalcBaseVec(0));
BBoxCheckPoint(CalcBaseVec(TMath::PiOver2()));
BBoxCheckPoint(CalcBaseVec(TMath::Pi()));
BBoxCheckPoint(CalcBaseVec(TMath::Pi() + TMath::PiOver2()));
}
////////////////////////////////////////////////////////////////////////////////
/// Virtual from TEveProjectable, returns TEveJetConeProjected class.
TClass* TEveJetCone::ProjectedClass(const TEveProjection*) const
{
return TEveJetConeProjected::Class();
}
////////////////////////////////////////////////////////////////////////////////
/// Add jet cone.
/// parameters are :
/// - (eta,phi) : of the center/leading particle
/// - cone_r : cone radius in eta-phi space
/// - length : length of the cone
/// - if cylinder is set and length is adapted to cylinder.
/// - if length is given, it will be used as scalar factor
/// - if cylinder is not set, length is used as length of the cone
/// Return 0 on success.
Int_t TEveJetCone::AddCone(Float_t eta, Float_t phi, Float_t cone_r, Float_t length)
{
return AddEllipticCone(eta, phi, cone_r, cone_r, length);
}
////////////////////////////////////////////////////////////////////////////////
/// Add jet cone.
/// parameters are :
/// - (eta,phi) : of the center/leading particle
/// - (reta, rphi) : radius of cone in eta-phi space
/// - length : length of the cone
/// - if cylinder is set and length is adapted to cylinder.
/// - if length is given, it will be used as scalar factor
/// - if cylinder is not set, length is used as length of the cone
/// Returns 0 on success.
Int_t TEveJetCone::AddEllipticCone(Float_t eta, Float_t phi, Float_t reta, Float_t rphi, Float_t length)
{
using namespace TMath;
if (length != 0) fLimits.fX = length;
if (fLimits.IsZero())
return -1;
fEta = eta; fPhi = phi; fDEta = reta; fDPhi = rphi;
return 0;
}
////////////////////////////////////////////////////////////////////////////////
/// Fill TEveVector with eta and phi, magnitude 1.
TEveVector TEveJetCone::CalcEtaPhiVec(Float_t eta, Float_t phi) const
{
using namespace TMath;
return TEveVector(Cos(phi) / CosH(eta), Sin(phi) / CosH(eta), TanH(eta));
}
////////////////////////////////////////////////////////////////////////////////
/// Returns point on the base of the cone with given eta and phi.
TEveVector TEveJetCone::CalcBaseVec(Float_t eta, Float_t phi) const
{
using namespace TMath;
TEveVector vec = CalcEtaPhiVec(eta, phi);
// -- Set length of the contourPoint
if (fLimits.fY != 0 && fLimits.fZ != 0)
{
Float_t theta = vec.Theta();
if (theta < fThetaC)
vec *= fLimits.fZ / Cos(theta);
else if (theta > Pi() - fThetaC)
vec *= fLimits.fZ / Cos(theta - Pi());
else
vec *= fLimits.fY / Sin(theta);
if (fLimits.fX != 0) vec *= fLimits.fX;
}
else
{
vec *= fLimits.fX;
}
return vec;
}
////////////////////////////////////////////////////////////////////////////////
/// Returns point on the base of the cone with internal angle alpha:
/// alpha = 0 -> max eta, alpha = pi/2 -> max phi, ...
TEveVector TEveJetCone::CalcBaseVec(Float_t alpha) const
{
using namespace TMath;
return CalcBaseVec(fEta + fDEta * Cos(alpha), fPhi + fDPhi * Sin(alpha));
}
////////////////////////////////////////////////////////////////////////////////
/// Returns true if the cone is in barrel / endcap transition region.
Bool_t TEveJetCone::IsInTransitionRegion() const
{
using namespace TMath;
Float_t tm = CalcBaseVec(0).Theta();
Float_t tM = CalcBaseVec(Pi()).Theta();
return (tM > fThetaC && tm < fThetaC) ||
(tM > Pi() - fThetaC && tm < Pi() - fThetaC);
}
/** \class TEveJetConeProjected
\ingroup TEve
Projection of TEveJetCone.
*/
////////////////////////////////////////////////////////////////////////////////
/// Constructor.
TEveJetConeProjected::TEveJetConeProjected(const char* n, const char* t) :
TEveShape(n, t)
{
}
////////////////////////////////////////////////////////////////////////////////
/// Destructor.
TEveJetConeProjected::~TEveJetConeProjected()
{
}
////////////////////////////////////////////////////////////////////////////////
/// Compute bounding-box, virtual from TAttBBox.
void TEveJetConeProjected::ComputeBBox()
{
BBoxInit();
TEveJetCone *cone = dynamic_cast<TEveJetCone*>(fProjectable);
////////////////////////////////////////////////////////////////////////////////
TEveProjection *proj = GetManager()->GetProjection();
TEveVector v;
v = cone->fApex; proj->ProjectVector(v, fDepth); BBoxCheckPoint(v);
v = cone->CalcBaseVec(0); proj->ProjectVector(v, fDepth); BBoxCheckPoint(v);
v = cone->CalcBaseVec(TMath::PiOver2()); proj->ProjectVector(v, fDepth); BBoxCheckPoint(v);
v = cone->CalcBaseVec(TMath::Pi()); proj->ProjectVector(v, fDepth); BBoxCheckPoint(v);
v = cone->CalcBaseVec(TMath::Pi() + TMath::PiOver2()); proj->ProjectVector(v, fDepth); BBoxCheckPoint(v);
}
////////////////////////////////////////////////////////////////////////////////
/// This is virtual method from base-class TEveProjected.
void TEveJetConeProjected::SetDepthLocal(Float_t d)
{
SetDepthCommon(d, this, fBBox);
}
////////////////////////////////////////////////////////////////////////////////
/// This is virtual method from base-class TEveProjected.
void TEveJetConeProjected::SetProjection(TEveProjectionManager* mng, TEveProjectable* model)
{
TEveProjected::SetProjection(mng, model);
CopyVizParams(dynamic_cast<TEveElement*>(model));
}
////////////////////////////////////////////////////////////////////////////////
/// Re-project the jet-cone.
void TEveJetConeProjected::UpdateProjection()
{
}