CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
FWPFCandidateDetailView.cc
Go to the documentation of this file.
1 // ROOT includes
2 #include "TEveScene.h"
3 #include "TEveManager.h"
4 #include "TEveStraightLineSet.h"
5 #include "TEveTrack.h"
6 #include "TEveTrackPropagator.h"
7 #include "TEveTrans.h"
8 #include "TEveText.h"
9 #include "TEveGeoShape.h"
10 #include "TGLViewer.h"
11 #include "TGLScenePad.h"
12 #include "TCanvas.h"
13 #include "TLatex.h"
14 #include "TLegend.h"
15 
16 #include "TH2.h"
17 
18 #include "TAxis.h"
19 #include "TGSlider.h"
20 #include "TGButton.h"
21 #include "TGLabel.h"
22 #include "TGLCameraOverlay.h"
23 
24 // boost includes
25 #include "boost/bind.hpp"
26 
29 
39 
41 
48 
49 
51  m_range(1),
52  m_candidate(0),
53  m_legend(0),
54  m_slider(0),
55  m_sliderListener(),
56  m_eventList(0),
57  m_plotEt(true),
58  m_rnrHcal(true)
59 {}
60 
62 {
63 }
64 
65 
67 {
68  return m_candidate->eta();
69 }
70 
72 {
73  return m_candidate->phi();
74 }
75 
77 {
78  float dx = m_candidate->eta() - x;
79  float dy = m_candidate->phi() - y;
80  float sd = TMath::Sqrt(dx*dx + dy*dy);
81  return sd < m_range;
82 }
83 
84 //______________________________________________________________________________
85 
86 void
88 {
89  m_legend = new TLegend( 0.01, 0.01, 0.99, 0.99, 0, "NDC" );
90  m_legend->SetFillColor(kWhite);
91  m_legend->SetTextSize( 0.07 );
92  m_legend->SetBorderSize( 0 );
93  m_legend->SetMargin( 0.15 );
94  m_legend->SetEntrySeparation( 0.01 );
95 }
96 
97 //______________________________________________________________________________
98 
99 void
101 {
102  static float kSliderRangeFactor = 0.2;
103 
104  m_range = x * kSliderRangeFactor;
105 
107 
108 
109  gEve->Redraw3D();
110 }
111 
112 //______________________________________________________________________________
113 
114 void
116 {
117  m_infoCanvas->cd();
118 
119  float_t x = 0.02;
120  float y = 0.95;
121 
122  TLatex* latex = new TLatex( x, y, "" );
123  const double textsize( 0.07 );
124  latex->SetTextSize( textsize );
125 
126  latex->DrawLatex( x, y, id.item()->modelName( id.index()).c_str());
127  y -= latex->GetTextSize()*0.6;
128 
129  latex->SetTextSize( textsize );
130  float lineH = latex->GetTextSize()*0.6;
131 
132  latex->DrawLatex( x, y, Form( " P_{T} = %.1f GeV, #eta = %0.2f, #varphi = %0.2f",
133  track->pt(), track->eta(), track->phi()));
134  y -= lineH;
135 
136  if( track->charge() > 0 )
137  latex->DrawLatex( x, y, " charge = +1" );
138  else
139  latex->DrawLatex( x, y, " charge = -1" );
140  y -= lineH;
141  y -= lineH;
142 
143  m_legend->SetY2(y);
144  m_legend->Draw();
145  m_legend = 0; // Deleted together with TPad.
146 }
147 
148 void
150 {
151  printf("plotEt = %d \n", m_plotEt);
152  m_plotEt = !m_plotEt;
154 }
155 
156 void
158 {
159  printf("rnrHcal = %d \n", m_rnrHcal);
160  m_rnrHcal = !m_rnrHcal;
162 }
163 
164 //______________________________________________________________________________
165 
166 void
168 {
169  m_candidate = candidate;
170 
171  // ROOT GUI
172  //
173  {
174  TGCompositeFrame* f = new TGVerticalFrame(m_guiFrame);
175  m_guiFrame->AddFrame(f);
176  f->AddFrame(new TGLabel(f, "Rng:"), new TGLayoutHints(kLHintsLeft, 2, 2, 0, 0));
177  m_slider = new TGHSlider(f, 120, kSlider1 | kScaleNo);
178  f->AddFrame(m_slider, new TGLayoutHints(kLHintsTop | kLHintsLeft, 2, 2, 1, 4));
179  m_slider->SetRange(1, 50);
180  m_slider->SetPosition(8);
181 
183  TQObject::Connect(m_slider, "PositionChanged(Int_t)", "FWIntValueListenerBase", m_sliderListener, "setValue(Int_t)");
185  {
186  CSGAction* action = new CSGAction(this, "Scale Et");
187  TGCheckButton* b = new TGCheckButton(m_guiFrame, action->getName().c_str() );
188  b->SetState(kButtonDown, true);
189  m_guiFrame->AddFrame(b, new TGLayoutHints( kLHintsNormal, 2, 3, 1, 4));
190  TQObject::Connect(b, "Clicked()", "CSGAction", action, "activate()");
191  action->activated.connect(sigc::mem_fun(this, &FWPFCandidateDetailView::plotEtChanged));
192  }
193  {
194  CSGAction* action = new CSGAction(this, "RnrHcal");
195  TGCheckButton* b = new TGCheckButton(m_guiFrame, action->getName().c_str() );
196  b->SetState(kButtonDown, true);
197  m_guiFrame->AddFrame(b, new TGLayoutHints( kLHintsNormal, 2, 3, 1, 4));
198  TQObject::Connect(b, "Clicked()", "CSGAction", action, "activate()");
199  action->activated.connect(sigc::mem_fun(this, &FWPFCandidateDetailView::rnrHcalChanged));
200  }
201 
202  }
203  makeLegend();
204  setTextInfo(id, candidate);
205 
206  TGCompositeFrame* p = (TGCompositeFrame*)m_guiFrame->GetParent();
207  p->MapSubwindows();
208  p->Layout();
209 
211  // GL stuff
212 
213 
214  m_candidate = candidate;
215 
216  try {
219  event->getByLabel(edm::InputTag("particleFlowRecHitECAL"), ecalH);
220  if (ecalH.product()) voteMaxEtEVal(ecalH.product());
221 
223  event->getByLabel(edm::InputTag("particleFlowRecHitHBHEHO"),hcalH);
224  if (hcalH.product()) voteMaxEtEVal(hcalH.product());
225  }
226  catch(const cms::Exception& iE) {
227  std::cerr << iE.what();
228  }
229 
230  m_eveScene->GetGLScene()->SetSelectable(false);
231  m_eventList = new TEveElementList("PFDetailView");
232  m_eveScene->AddElement(m_eventList);
233 
234 
235  viewerGL()->SetStyle(TGLRnrCtx::kOutline);
236  viewerGL()->SetCurrentCamera(TGLViewer::kCameraOrthoXOY);
237 
238  TGLCameraOverlay* co = viewerGL()->GetCameraOverlay();
239  co->SetShowOrthographic(kTRUE);
240  co->SetOrthographicMode(TGLCameraOverlay::kAxis);
241 
242  viewerGL()->ResetCamerasAfterNextUpdate();
243  try {
245  }
246  catch (...) {
247  printf("unknown exception \n");
248  }
249 
250  viewerGL()->UpdateScene(kFALSE);
251 
252  gEve->Redraw3D();
253 
254  // gEve->AddToListTree(m_eventList, true);//debug, used with --eve option
255 }
256 
257 
258 //______________________________________________________________________________
259 
260 void FWPFCandidateDetailView::voteMaxEtEVal( const std::vector<reco::PFRecHit> *hits)
261 {
262  if (!hits) return;
263 
264  for (std::vector<reco::PFRecHit>::const_iterator it = hits->begin(); it != hits->end(); ++it)
265  {
266  TEveVector centre(it->position().x(), it->position().y(), it->position().z());
267  float E = it->energy();
268  float Et = FWPFMaths::calculateEt( centre, E );
269  item()->context().voteMaxEtAndEnergy(Et , E );
270  }
271 }
272 
273 
274 //______________________________________________________________________________
275 
276 void FWPFCandidateDetailView::addTracks( const std::vector<reco::PFRecTrack> *tracks)
277 {
278  for (std::vector<reco::PFRecTrack>::const_iterator it = tracks->begin(); it != tracks->end(); ++it)
279  {
281  /*
282  if (!isPntInRng(it->trackRef().innerMomentum().Eta(), it->position().Phi()))
283  continue;
284 
285  TEveLine* line = new TEveLine("Track");
286  line->SetMainColor(kYellow);
287  int N = it->nTrajectoryPoints();
288 
289  for (int p = 0 ; p<N; ++p) {
290  pos = track.extrapolatedPoint(p).position();
291 
292  if( pos.Eta() !=0 and pos.Phi() !=0)
293  line->SetNextPoint(pos.Eta(), pos.Phi(), 0);
294  }
295  m_eventList->AddElement(line);
296  */
297 
298  }
299 }
300 
301 //______________________________________________________________________________
302 
303 void FWPFCandidateDetailView::addClusters( const std::vector<reco::PFCluster> *cluster)
304 {
305  if (!cluster) return;
306 
307  Color_t col = kViolet+9;
308 
309  TEveStraightLineSet* ls = new TEveStraightLineSet("cluster_ls");
310  ls->SetMainColor(col);
311  m_eventList->AddElement(ls);
312 
313  TEvePointSet* ps = new TEvePointSet("cluster_ps");
314  ps->SetMainColor(col);
315  ps->SetMarkerStyle(2);
316  ps->SetMarkerSize(0.005);
317  m_eventList->AddElement(ps);
318 
319  for (std::vector<reco::PFCluster>::const_iterator it = cluster->begin(); it != cluster->end(); ++it)
320  {
321  if (!isPntInRng(it->position().Eta(), it->position().Phi()))
322  continue;
323 
324  ps->SetNextPoint(it->position().Eta(), it->position().Phi(), 0);
325 
326  /*
327  const std::vector< reco::PFRecHitFraction >& fractions = it->recHitFractions();
328  for (std::vector< reco::PFRecHitFraction >::const_iterator fi = fractions.begin(); fi != fractions.end(); ++fi)
329  {
330  // !!! AMT can't get fi->recHitRef().position()
331  // ls->AddLine(it->position().Eta(), it->position().Phi(), 0,
332  // fi->recHitRef().position().Eta(), fi->recHitRef().position().Phi(), 0);
333  }
334  */
335 
336  }
337 }
338 namespace {
339 void WrapTwoPi(std::vector<TEveVector>& hc, float y)
340 {
341 
342  if (TMath::Abs(hc[0].fY) < 2)
343  return;
344 
345 
346  if (hc[0].fY > 0 && hc[1].fY > 0 && hc[2].fY > 0 && hc[3].fY > 0 )
347  return;
348  if (hc[0].fY < 0 && hc[1].fY < 0 && hc[2].fY < 0 && hc[3].fY < 0 )
349  return;
350 
351 
352  for (int i = 0; i < 4; ++i)
353  if (y > 0 && hc[i].fY < 0)
354  hc[i].fY += TMath::TwoPi();
355  else if (y < 0 && hc[i].fY > 0)
356  hc[i].fY -= TMath::TwoPi();
357 
358 }
359 }
360 //______________________________________________________________________________
361 namespace
362 {
363 TEveStraightLineSet::Line_t* AddLineToLineSet(TEveStraightLineSet* ls, const std::vector< TEveVector >& pnts, int i0, int i1)
364 {
365  if (0) {
366  printf("add line \n");
367  pnts[i0].Dump();
368  pnts[i1].Dump();
369  }
370  return ls->AddLine(pnts[i0], pnts[i1]);
371  // return ls->AddLine(pnts[i0].Eta(),pnts[i0].Phi(), 0 , pnts[i1].Eta(),pnts[i1].Phi(), 0);
372 }
373 }
374 void FWPFCandidateDetailView::addHits( const std::vector<reco::PFRecHit> *hits)
375 {
376 
377  TEveStraightLineSet* lsOutline = ( TEveStraightLineSet*)m_eventList->FindChild("outlines");
378 
379  TEvePointSet* ps = new TEvePointSet("test");
380  m_eventList->AddElement(ps);
381  ps->SetMainColor(kOrange);
382 
383  for (std::vector<reco::PFRecHit>::const_iterator it = hits->begin(); it != hits->end(); ++it)
384  {
385  const std::vector< math::XYZPoint >& corners = it->getCornersXYZ();
386  if (!isPntInRng(corners[0].eta(), corners[0].phi()))
387  continue;
388 
389  std::vector<TEveVector> hc;
390  for (int k = 0; k < 4; ++k) {
391  hc.push_back(TEveVector(corners[k].eta(), corners[k].phi(), 0));
392  // ps->SetNextPoint(corners[k].eta(),corners[k].phi(),0 ); //debug
393  }
394 
395  WrapTwoPi(hc, corners[0].phi());
396 
397  AddLineToLineSet(lsOutline, hc, 0, 1);
398  AddLineToLineSet(lsOutline, hc, 1, 2);
399  AddLineToLineSet(lsOutline, hc, 2, 3);
400  AddLineToLineSet(lsOutline, hc, 3, 0);
401 
402 
403  // get scaled corners
404  TEveVector centerOfGravity = hc[0] + hc[1] + hc[2] + hc[3];
405  centerOfGravity *= 0.25;
406 
407  std::vector<TEveVector> radialVectors;
408  for (int k = 0; k < 4; ++k)
409  radialVectors.push_back(TEveVector(hc[k] - centerOfGravity));
410 
411  float factor = 1;
412  if (m_plotEt) {
413  float Et = FWPFMaths::calculateEt( TEveVector(corners[0].x(), corners[0].y(), corners[0].z()), it->energy());
414  factor = Et/context().getMaxEnergyInEvent(m_plotEt);
415  }
416  else
417  factor = it->energy()/context().getMaxEnergyInEvent(false);
418 
419 
420  std::vector<TEveVector> scaledCorners;
421  for (int k = 0; k < 4; ++k) {
422  radialVectors[k] *= factor;
423  scaledCorners.push_back(TEveVector(radialVectors[k] + centerOfGravity));
424  }
425 
426  TEveStraightLineSet* ls = ( TEveStraightLineSet*)m_eventList->FindChild(Form("%d_rechit", it->depth() ));
427  AddLineToLineSet(ls, scaledCorners, 0, 1);
428  AddLineToLineSet(ls, scaledCorners, 1, 2);
429  AddLineToLineSet(ls, scaledCorners, 2, 3);
430  // AddLineToLineSet(ls, scaledCorners, 3, 0);
431  TEveStraightLineSet::Line_t* li = AddLineToLineSet(ls, scaledCorners, 3, 0);
432  ls->AddMarker(centerOfGravity, li->fId);
433 
434  }
435 }
436 
437 
438 //______________________________________________________________________________
439 
440 
442 {
443  if (m_eventList->HasChildren()) m_eventList->DestroyElements();
444 
445 
446  for (int depth = 0; depth < 6; ++depth)
447  {
448  TEveStraightLineSet* ls = new TEveStraightLineSet(Form("%d_rechit", depth));
449 
450  if (depth == 0 ) ls->SetLineColor(kGray);
451  else if (depth == 1 ) ls->SetLineColor(kRed);
452  else if (depth == 2 ) ls->SetLineColor(kGreen);
453  else if (depth == 3 ) ls->SetLineColor(kMagenta);
454  else if (depth == 4 ) ls->SetLineColor(kOrange);
455  else if (depth == 5 ) ls->SetLineColor(kYellow);
456 
457  ls->SetMarkerStyle(1);
458  m_eventList->AddElement(ls);
459  }
460 
461  TEveStraightLineSet* ls = new TEveStraightLineSet("outlines");
462  ls->SetLineColor(kGray);
463  ls->SetMainTransparency(80);
464  m_eventList->AddElement(ls);
465 
466 
468 
469 
470  //
471  // recHits
472  //
473  try {
475  event->getByLabel(edm::InputTag("particleFlowRecHitECAL"), ecalH);
476  addHits(ecalH.product());
477  }
478  catch(const cms::Exception& iE) {
479  std::cerr << iE.what();
480  }
481 
482  if (m_rnrHcal) {
483  try {
485  event->getByLabel(edm::InputTag("particleFlowRecHitHF"), ecalH);
486  addHits(ecalH.product());
487  }
488  catch(const cms::Exception& iE) {
489  std::cerr << iE.what();
490  }
491 
492 
493  try {
495  event->getByLabel(edm::InputTag("particleFlowRecHitHBHEHO"),hcalH);
496  addHits(hcalH.product());
497  }
498  catch (const cms::Exception& iE) {
499  std::cerr << iE.what();
500  }
501 
502  }
503 
504 
505  //
506  // clusters
507  //
508  try {
510  event->getByLabel(edm::InputTag("particleFlowClusterECAL"), ecalClustersH);
511  addClusters(ecalClustersH.product());
512  }
513  catch (const cms::Exception& iE) {
514  std::cerr << iE.what();
515  }
516 
517  //
518  // tracks
519  //
520  try {
522  event->getByLabel(edm::InputTag("pfTrack"),trackH);
523  addTracks(trackH.product());
524  }
525  catch (const cms::Exception& iE) {
526  std::cerr << iE.what();
527  }
528 
529 }
530 
const std::string & getName() const
Definition: CSGAction.cc:81
virtual char const * what() const
Definition: Exception.cc:141
const double TwoPi
int i
Definition: DBlmapReader.cc:9
bool isPntInRng(float x, float y)
FWIntValueListener * m_sliderListener
void voteMaxEtAndEnergy(float Et, float energy) const
Definition: Context.cc:185
const FWEventItem * item()
sigc::signal< void > activated
Definition: CSGAction.h:88
def ls
Definition: eostools.py:348
#define REGISTER_FWDETAILVIEW(_classname_, _name_,...)
virtual double eta() const
momentum pseudorapidity
virtual double pt() const
transverse momentum
T x() const
Cartesian x coordinate.
void build(const FWModelId &id, const reco::PFCandidate *)
const fireworks::Context & context() const
const fireworks::Context & context() const
Definition: FWEventItem.h:126
T Abs(T a)
Definition: MathUtil.h:49
sigc::signal< void, Int_t > valueChanged_
virtual int charge() const
electric charge
Definition: LeafCandidate.h:91
double f[11][100]
float getMaxEnergyInEvent(bool isEt) const
Definition: Context.cc:201
float calculateEt(const TEveVector &centre, float e)
Definition: FWPFMaths.cc:115
void voteMaxEtEVal(const std::vector< reco::PFRecHit > *hits)
const edm::EventBase * getCurrentEvent() const
T const * product() const
Definition: Handle.h:81
static FWGUIManager * getGUIManager()
tuple tracks
Definition: testEve_cfg.py:39
double sd
const reco::PFCandidate * m_candidate
double b
Definition: hdecay.h:120
void addHits(const std::vector< reco::PFRecHit > *)
Particle reconstructed by the particle flow algorithm.
Definition: PFCandidate.h:39
void addClusters(const std::vector< reco::PFCluster > *)
susybsm::HSCParticleCollection hc
Definition: classes.h:25
int col
Definition: cuy.py:1008
virtual double phi() const
momentum azimuthal angle
void setTextInfo(const FWModelId &id, const reco::PFCandidate *)
void addTracks(const std::vector< reco::PFRecTrack > *)