CMS 3D CMS Logo

FWJetProxyBuilder.cc
Go to the documentation of this file.
1 // -*- C++ -*-
2 //
3 // Package: Calo
4 // Class : FWJetProxyBuilder
5 //
6 // Implementation:
7 // <Notes on implementation>
8 //
9 // Original Author: Chris Jones
10 // Created: Tue Dec 2 14:17:03 EST 2008
11 //
12 
13 #include "TEveJetCone.h"
14 #include "TEveScalableStraightLineSet.h"
15 
21 // user include files
29 
31 
32 namespace fireworks {
33 
34  struct jetScaleMarker : public scaleMarker {
35  jetScaleMarker(TEveScalableStraightLineSet* ls, float et, float e, const FWViewContext* vc)
36  : scaleMarker(ls, et, e, vc), m_text(nullptr) {}
37 
39  };
40 } // namespace fireworks
41 
42 static const std::string kJetLabelsRhoPhiOn("Draw Labels in RhoPhi View");
43 static const std::string kJetLabelsRhoZOn("Draw Labels in RhoZ View");
44 static const std::string kJetOffset("Label Offset");
45 static const std::string kJetApexBeamSpot("Place Apex In BeamSpot");
46 
48 public:
50  ~FWJetProxyBuilder() override;
51 
52  bool havePerViewProduct(FWViewType::EType) const override { return true; }
53  bool haveSingleProduct() const override { return false; } // different view types
54  void cleanLocal() override;
55 
56  void setItem(const FWEventItem* iItem) override {
58  if (iItem) {
59  iItem->getConfig()->assertParam(kJetLabelsRhoPhiOn, false);
60  iItem->getConfig()->assertParam(kJetLabelsRhoZOn, false);
61  iItem->getConfig()->assertParam(kJetOffset, 2.1, 1.0, 5.0);
62  }
63  }
64 
66 
67 protected:
69  void buildViewType(const reco::Jet& iData,
70  unsigned int iIndex,
71  TEveElement& oItemHolder,
73  const FWViewContext*) override;
74 
75  void localModelChanges(const FWModelId& iId,
76  TEveElement* iCompound,
77  FWViewType::EType viewType,
78  const FWViewContext* vc) override;
79 
80  void scaleProduct(TEveElementList* parent, FWViewType::EType, const FWViewContext* vc) override;
81 
82 private:
83  typedef std::vector<fireworks::jetScaleMarker> Lines_t;
84 
85  FWJetProxyBuilder(const FWJetProxyBuilder&) = delete; // stop default
86  const FWJetProxyBuilder& operator=(const FWJetProxyBuilder&) = delete; // stop default
87 
88  TEveElementList* requestCommon();
89  void setTextPos(fireworks::jetScaleMarker& s, const FWViewContext* vc, FWViewType::EType);
90 
91  TEveElementList* m_common;
92 
93  std::vector<fireworks::jetScaleMarker> m_lines;
94 };
95 
96 //______________________________________________________________________________
98  m_common = new TEveElementList("common electron scene");
99  m_common->IncDenyDestroy();
100 }
101 
103 
105  if (m_common->HasChildren() == false) {
106  for (int i = 0; i < static_cast<int>(item()->size()); ++i) {
107  TEveJetCone* cone = fireworks::makeEveJetCone(modelData(i), context());
108 
109  cone->SetFillColor(item()->defaultDisplayProperties().color());
110  cone->SetLineColor(item()->defaultDisplayProperties().color());
111 
112  m_common->AddElement(cone);
113  }
114  }
115  return m_common;
116 }
117 
119  unsigned int iIndex,
120  TEveElement& oItemHolder,
122  const FWViewContext* vc) {
123  // add cone from shared pool
124  TEveElementList* cones = requestCommon();
125  TEveElement::List_i coneIt = cones->BeginChildren();
126  std::advance(coneIt, iIndex);
127 
129  setupAddElement(*coneIt, &oItemHolder);
130  (*coneIt)->SetMainTransparency(TMath::Min(100, 80 + dp.transparency() / 5));
131 
132  TEveVector p1;
133  TEveVector p2;
134 
135  // scale markers in projected views
136  if (FWViewType::isProjected(type)) {
137  m_lines.push_back(
138  fireworks::jetScaleMarker(new TEveScalableStraightLineSet("jetline"), iData.et(), iData.energy(), vc));
139  fireworks::jetScaleMarker& markers = m_lines.back();
140 
141  float size = 1.f; // values are saved in scale
142  double theta = iData.theta();
143  double phi = iData.phi();
144 
145  if (type == FWViewType::kRhoZ) {
146  static const float_t offr = 4;
147  float r_ecal = context().caloR1() + offr;
148  float z_ecal = context().caloZ1() + offr / tan(context().caloTransAngle());
149  double r(0);
150  if (theta < context().caloTransAngle() || M_PI - theta < context().caloTransAngle()) {
151  z_ecal = context().caloZ2() + offr / tan(context().caloTransAngle());
152  r = z_ecal / fabs(cos(theta));
153  } else {
154  r = r_ecal / sin(theta);
155  }
156 
157  p1.Set(0., (phi > 0 ? r * fabs(sin(theta)) : -r * fabs(sin(theta))), r * cos(theta));
158  p2.Set(0., (phi > 0 ? (r + size) * fabs(sin(theta)) : -(r + size) * fabs(sin(theta))), (r + size) * cos(theta));
159  } else {
160  float ecalR = context().caloR1() + 4;
161  p1.Set(ecalR * cos(phi), ecalR * sin(phi), 0);
162  p2.Set((ecalR + size) * cos(phi), (ecalR + size) * sin(phi), 0);
163  }
164 
165  markers.m_ls->SetScaleCenter(p1.fX, p1.fY, p1.fZ);
166  markers.m_ls->AddLine(p1, p2);
167 
168  markers.m_ls->SetLineWidth(4);
169  markers.m_ls->SetLineColor(dp.color());
170  FWViewEnergyScale* caloScale = vc->getEnergyScale();
171  markers.m_ls->SetScale(caloScale->getScaleFactor3D() * (caloScale->getPlotEt() ? iData.et() : iData.energy()));
172 
173  if ((type == FWViewType::kRhoZ && item()->getConfig()->value<bool>(kJetLabelsRhoZOn)) ||
174  (type == FWViewType::kRhoPhi && item()->getConfig()->value<bool>(kJetLabelsRhoPhiOn))) {
175  markers.m_text = new FWEveText(Form("%.1f", vc->getEnergyScale()->getPlotEt() ? iData.et() : iData.energy()));
176  markers.m_text->SetMainColor(item()->defaultDisplayProperties().color());
177  setTextPos(markers, vc, type);
178  }
179 
180  markers.m_ls->SetMarkerColor(markers.m_ls->GetMainColor());
181  setupAddElement(markers.m_ls, &oItemHolder);
182  if (markers.m_text)
183  setupAddElement(markers.m_text, &oItemHolder, false);
184  }
185  context().voteMaxEtAndEnergy(iData.et(), iData.energy());
186 }
187 
189  TEveElement* iCompound,
190  FWViewType::EType viewType,
191  const FWViewContext* vc) {
192  increaseComponentTransparency(iId.index(), iCompound, "TEveJetCone", 80);
193 
194  for (Lines_t::iterator i = m_lines.begin(); i != m_lines.end(); ++i) {
195  TEveStraightLineSetProjected* projLineSet = (TEveStraightLineSetProjected*)(*(*i).m_ls->BeginProjecteds());
196  if (projLineSet)
197  projLineSet->UpdateProjection();
198  }
199 }
200 
202  m_lines.clear();
203  m_common->DestroyElements();
204 }
205 
207  for (Lines_t::iterator i = m_lines.begin(); i != m_lines.end(); ++i) {
208  if (vc == (*i).m_vc) {
209  float value = vc->getEnergyScale()->getPlotEt() ? (*i).m_et : (*i).m_energy;
210 
211  (*i).m_ls->SetScale(vc->getEnergyScale()->getScaleFactor3D() * value);
212  if ((*i).m_text) {
213  (*i).m_text->SetText(Form("%.1f", value));
214  setTextPos(*i, vc, type);
215  }
216  TEveStraightLineSetProjected* projLineSet = (TEveStraightLineSetProjected*)(*(*i).m_ls->BeginProjecteds());
217  projLineSet->UpdateProjection();
218  }
219  }
220 
221  // move jets to eventCenter
223  TEveVector cv;
224  contextGl->commonPrefs()->getEventCenter(cv.Arr());
225  for (TEveElement::List_i i = m_common->BeginChildren(); i != m_common->EndChildren(); ++i) {
226  TEveJetCone* cone = dynamic_cast<TEveJetCone*>(*i);
227  if (cone) {
228  cone->SetApex(cv);
229  }
230  }
231 }
232 
234  TEveChunkManager::iterator li(s.m_ls->GetLinePlex());
235  li.next();
236  TEveStraightLineSet::Line_t& l = *(TEveStraightLineSet::Line_t*)li();
237  TEveVector v(l.fV2[0] - l.fV1[0], l.fV2[1] - l.fV1[1], l.fV2[2] - l.fV1[2]);
238  v.Normalize();
239 
240  double off = item()->getConfig()->value<double>(kJetOffset) - 1;
241  float value = vc->getEnergyScale()->getPlotEt() ? s.m_et : s.m_energy;
242  double trs = off * 130 * value / context().getMaxEnergyInEvent(vc->getEnergyScale()->getPlotEt());
243  v *= trs;
244 
245  float x = l.fV1[0] + v[0];
246  float y = l.fV1[1] + v[1];
247  float z = l.fV1[2] + v[2];
248 
250  s.m_text->RefMainTrans().SetPos(x, y, z);
251  if ((s.m_text)->BeginProjecteds() != (s.m_text)->EndProjecteds()) {
252  FWEveTextProjected* textProjected = (FWEveTextProjected*)(*(s.m_text)->BeginProjecteds());
253  textProjected->UpdateProjection();
254  }
255 }
256 
258  reco::Jet,
259  "Jets",
size
Write out results.
type
Definition: HCALResponse.h:21
bool haveSingleProduct() const override
const fireworks::Context & context() const
void scaleProduct(TEveElementList *parent, FWViewType::EType, const FWViewContext *vc) override
FWProxyBuilderConfiguration * getConfig() const
Definition: FWEventItem.h:150
float getScaleFactor3D() const
static const std::string kJetApexBeamSpot("Place Apex In BeamSpot")
void UpdateProjection() override
const FWDisplayProperties & defaultDisplayProperties() const
Definition: FWEventItem.cc:403
float m_offsetZ
static const std::string kJetLabelsRhoPhiOn("Draw Labels in RhoPhi View")
static const int kAllRPZBits
Definition: FWViewType.h:67
double theta() const final
momentum polar angle
Base class for all types of Jets.
Definition: Jet.h:20
void voteMaxEtAndEnergy(float Et, float energy) const
Definition: Context.cc:162
void setupAddElement(TEveElement *el, TEveElement *parent, bool set_color=true) const
jetScaleMarker(TEveScalableStraightLineSet *ls, float et, float e, const FWViewContext *vc)
Sin< T >::type sin(const T &t)
Definition: Sin.h:22
#define nullptr
FWViewEnergyScale * getEnergyScale() const
Geom::Theta< T > theta() const
void getEventCenter(float *inC) const
static float caloZ2(bool offset=true)
Definition: Context.cc:185
cv
Definition: cuy.py:364
std::vector< fireworks::jetScaleMarker > Lines_t
static const std::string kJetOffset("Label Offset")
T Min(T a, T b)
Definition: MathUtil.h:39
const FWEventItem * item() const
static const int kAll3DBits
Definition: FWViewType.h:68
Color_t color() const
static bool isProjected(int)
Definition: FWViewType.cc:100
Char_t transparency() const
int index() const
Definition: FWModelId.h:41
double et() const final
transverse energy
virtual void setItem(const FWEventItem *iItem)
Cos< T >::type cos(const T &t)
Definition: Cos.h:22
void setItem(const FWEventItem *iItem) override
double energy() const final
energy
static float caloR1(bool offset=true)
Definition: Context.cc:180
Tan< T >::type tan(const T &t)
Definition: Tan.h:22
static const std::string kJetLabelsRhoZOn("Draw Labels in RhoZ View")
float getMaxEnergyInEvent(bool isEt) const
Definition: Context.cc:174
Definition: value.py:1
double p2[4]
Definition: TauolaWrapper.h:90
static Context * getInstance()
Definition: Context.cc:193
#define M_PI
TEveElementList * m_common
FWGenericParameter< T > * assertParam(const std::string &name, T def)
def ls(path, rec=False)
Definition: eostools.py:349
size_t size() const
Definition: FWEventItem.cc:457
#define REGISTER_PROXYBUILDER_METHODS()
#define REGISTER_FWPROXYBUILDER(_name_, _type_, _purpose_, _view_)
CmsShowCommon * commonPrefs() const
Definition: Context.cc:160
TEveScalableStraightLineSet * m_ls
Definition: scaleMarker.h:31
void buildViewType(const reco::Jet &iData, unsigned int iIndex, TEveElement &oItemHolder, FWViewType::EType type, const FWViewContext *) override
double p1[4]
Definition: TauolaWrapper.h:89
bool havePerViewProduct(FWViewType::EType) const override
static float caloZ1(bool offset=true)
Definition: Context.cc:183
void cleanLocal() override
std::vector< fireworks::jetScaleMarker > m_lines
TEveElementList * requestCommon()
~FWJetProxyBuilder() override
double phi() const final
momentum azimuthal angle
void localModelChanges(const FWModelId &iId, TEveElement *iCompound, FWViewType::EType viewType, const FWViewContext *vc) override
void setTextPos(fireworks::jetScaleMarker &s, const FWViewContext *vc, FWViewType::EType)
void increaseComponentTransparency(unsigned int index, TEveElement *holder, const std::string &name, Char_t transpOffset)
TEveJetCone * makeEveJetCone(const reco::Jet &iData, const fireworks::Context &context)
bool getPlotEt() const