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("particleFlowRecHitHCAL"),hcalH);
224  if (hcalH.product()) voteMaxEtEVal(hcalH.product());
225 
227  event->getByLabel(edm::InputTag("particleFlowRecHitHO"),hoH);
228  if (hoH.product()) voteMaxEtEVal(hoH.product());
229 
231  event->getByLabel(edm::InputTag("particleFlowRecHitHF"),hfH);
232  if (hfH.product()) voteMaxEtEVal(hfH.product());
233 
234 
235  }
236  catch(const cms::Exception& iE) {
237  std::cerr << iE.what();
238  }
239 
240  m_eveScene->GetGLScene()->SetSelectable(false);
241  m_eventList = new TEveElementList("PFDetailView");
242  m_eveScene->AddElement(m_eventList);
243 
244 
245  viewerGL()->SetStyle(TGLRnrCtx::kOutline);
246  viewerGL()->SetCurrentCamera(TGLViewer::kCameraOrthoXOY);
247 
248  TGLCameraOverlay* co = viewerGL()->GetCameraOverlay();
249  co->SetShowOrthographic(kTRUE);
250  co->SetOrthographicMode(TGLCameraOverlay::kAxis);
251 
252  viewerGL()->ResetCamerasAfterNextUpdate();
253  try {
255  }
256  catch (...) {
257  printf("unknown exception \n");
258  }
259 
260  viewerGL()->UpdateScene(kFALSE);
261 
262  gEve->Redraw3D();
263 
264  // gEve->AddToListTree(m_eventList, true);//debug, used with --eve option
265 }
266 
267 
268 //______________________________________________________________________________
269 
270 void FWPFCandidateDetailView::voteMaxEtEVal( const std::vector<reco::PFRecHit> *hits)
271 {
272  if (!hits) return;
273 
274  for (std::vector<reco::PFRecHit>::const_iterator it = hits->begin(); it != hits->end(); ++it)
275  {
276  TEveVector centre(it->position().x(), it->position().y(), it->position().z());
277  float E = it->energy();
278  float Et = FWPFMaths::calculateEt( centre, E );
279  item()->context().voteMaxEtAndEnergy(Et , E );
280  }
281 }
282 
283 
284 //______________________________________________________________________________
285 
286 void FWPFCandidateDetailView::addTracks( const std::vector<reco::PFRecTrack> *tracks)
287 {
288  for (std::vector<reco::PFRecTrack>::const_iterator it = tracks->begin(); it != tracks->end(); ++it)
289  {
291  /*
292  if (!isPntInRng(it->trackRef().innerMomentum().Eta(), it->position().Phi()))
293  continue;
294 
295  TEveLine* line = new TEveLine("Track");
296  line->SetMainColor(kYellow);
297  int N = it->nTrajectoryPoints();
298 
299  for (int p = 0 ; p<N; ++p) {
300  pos = track.extrapolatedPoint(p).position();
301 
302  if( pos.Eta() !=0 and pos.Phi() !=0)
303  line->SetNextPoint(pos.Eta(), pos.Phi(), 0);
304  }
305  m_eventList->AddElement(line);
306  */
307 
308  }
309 }
310 
311 //______________________________________________________________________________
312 
313 void FWPFCandidateDetailView::addClusters( const std::vector<reco::PFCluster> *cluster)
314 {
315  if (!cluster) return;
316 
317  Color_t col = kViolet+9;
318 
319  TEveStraightLineSet* ls = new TEveStraightLineSet("cluster_ls");
320  ls->SetMainColor(col);
321  m_eventList->AddElement(ls);
322 
323  TEvePointSet* ps = new TEvePointSet("cluster_ps");
324  ps->SetMainColor(col);
325  ps->SetMarkerStyle(2);
326  ps->SetMarkerSize(0.005);
327  m_eventList->AddElement(ps);
328 
329  for (std::vector<reco::PFCluster>::const_iterator it = cluster->begin(); it != cluster->end(); ++it)
330  {
331  if (!isPntInRng(it->position().Eta(), it->position().Phi()))
332  continue;
333 
334  ps->SetNextPoint(it->position().Eta(), it->position().Phi(), 0);
335 
336  /*
337  const std::vector< reco::PFRecHitFraction >& fractions = it->recHitFractions();
338  for (std::vector< reco::PFRecHitFraction >::const_iterator fi = fractions.begin(); fi != fractions.end(); ++fi)
339  {
340  // !!! AMT can't get fi->recHitRef().position()
341  // ls->AddLine(it->position().Eta(), it->position().Phi(), 0,
342  // fi->recHitRef().position().Eta(), fi->recHitRef().position().Phi(), 0);
343  }
344  */
345 
346  }
347 }
348 namespace {
349 void WrapTwoPi(std::vector<TEveVector>& hc, float y)
350 {
351 
352  if (TMath::Abs(hc[0].fY) < 2)
353  return;
354 
355 
356  if (hc[0].fY > 0 && hc[1].fY > 0 && hc[2].fY > 0 && hc[3].fY > 0 )
357  return;
358  if (hc[0].fY < 0 && hc[1].fY < 0 && hc[2].fY < 0 && hc[3].fY < 0 )
359  return;
360 
361 
362  for (int i = 0; i < 4; ++i)
363  if (y > 0 && hc[i].fY < 0)
364  hc[i].fY += TMath::TwoPi();
365  else if (y < 0 && hc[i].fY > 0)
366  hc[i].fY -= TMath::TwoPi();
367 
368 }
369 }
370 //______________________________________________________________________________
371 namespace
372 {
373 TEveStraightLineSet::Line_t* AddLineToLineSet(TEveStraightLineSet* ls, const std::vector< TEveVector >& pnts, int i0, int i1)
374 {
375  if (0) {
376  printf("add line \n");
377  pnts[i0].Dump();
378  pnts[i1].Dump();
379  }
380  return ls->AddLine(pnts[i0], pnts[i1]);
381  // return ls->AddLine(pnts[i0].Eta(),pnts[i0].Phi(), 0 , pnts[i1].Eta(),pnts[i1].Phi(), 0);
382 }
383 }
384 void FWPFCandidateDetailView::addHits( const std::vector<reco::PFRecHit> *hits)
385 {
386 
387  TEveStraightLineSet* lsOutline = ( TEveStraightLineSet*)m_eventList->FindChild("outlines");
388 
389  TEvePointSet* ps = new TEvePointSet("test");
390  m_eventList->AddElement(ps);
391  ps->SetMainColor(kOrange);
392 
393  for (std::vector<reco::PFRecHit>::const_iterator it = hits->begin(); it != hits->end(); ++it)
394  {
395  const std::vector< math::XYZPoint >& corners = it->getCornersXYZ();
396  if (!isPntInRng(corners[0].eta(), corners[0].phi()))
397  continue;
398 
399  std::vector<TEveVector> hc;
400  for (int k = 0; k < 4; ++k) {
401  hc.push_back(TEveVector(corners[k].eta(), corners[k].phi(), 0));
402  // ps->SetNextPoint(corners[k].eta(),corners[k].phi(),0 ); //debug
403  }
404 
405  WrapTwoPi(hc, corners[0].phi());
406 
407  AddLineToLineSet(lsOutline, hc, 0, 1);
408  AddLineToLineSet(lsOutline, hc, 1, 2);
409  AddLineToLineSet(lsOutline, hc, 2, 3);
410  AddLineToLineSet(lsOutline, hc, 3, 0);
411 
412 
413  // get scaled corners
414  TEveVector centerOfGravity = hc[0] + hc[1] + hc[2] + hc[3];
415  centerOfGravity *= 0.25;
416 
417  std::vector<TEveVector> radialVectors;
418  for (int k = 0; k < 4; ++k)
419  radialVectors.push_back(TEveVector(hc[k] - centerOfGravity));
420 
421  float factor = 1;
422  if (m_plotEt) {
423  float Et = FWPFMaths::calculateEt( TEveVector(corners[0].x(), corners[0].y(), corners[0].z()), it->energy());
424  factor = Et/context().getMaxEnergyInEvent(m_plotEt);
425  }
426  else
427  factor = it->energy()/context().getMaxEnergyInEvent(false);
428 
429 
430  std::vector<TEveVector> scaledCorners;
431  for (int k = 0; k < 4; ++k) {
432  radialVectors[k] *= factor;
433  scaledCorners.push_back(TEveVector(radialVectors[k] + centerOfGravity));
434  }
435 
436  TEveStraightLineSet* ls = ( TEveStraightLineSet*)m_eventList->FindChild(Form("%d_rechit", it->depth() ));
437  AddLineToLineSet(ls, scaledCorners, 0, 1);
438  AddLineToLineSet(ls, scaledCorners, 1, 2);
439  AddLineToLineSet(ls, scaledCorners, 2, 3);
440  // AddLineToLineSet(ls, scaledCorners, 3, 0);
441  TEveStraightLineSet::Line_t* li = AddLineToLineSet(ls, scaledCorners, 3, 0);
442  ls->AddMarker(centerOfGravity, li->fId);
443 
444  }
445 }
446 
447 
448 //______________________________________________________________________________
449 
450 
452 {
453  if (m_eventList->HasChildren()) m_eventList->DestroyElements();
454 
455 
456  for (int depth = 0; depth < 6; ++depth)
457  {
458  TEveStraightLineSet* ls = new TEveStraightLineSet(Form("%d_rechit", depth));
459 
460  if (depth == 0 ) ls->SetLineColor(kGray);
461  else if (depth == 1 ) ls->SetLineColor(kRed);
462  else if (depth == 2 ) ls->SetLineColor(kGreen);
463  else if (depth == 3 ) ls->SetLineColor(kMagenta);
464  else if (depth == 4 ) ls->SetLineColor(kOrange);
465  else if (depth == 5 ) ls->SetLineColor(kYellow);
466 
467  ls->SetMarkerStyle(1);
468  m_eventList->AddElement(ls);
469  }
470 
471  TEveStraightLineSet* ls = new TEveStraightLineSet("outlines");
472  ls->SetLineColor(kGray);
473  ls->SetMainTransparency(80);
474  m_eventList->AddElement(ls);
475 
476 
478 
479 
480  //
481  // recHits
482  //
483  try {
485  event->getByLabel(edm::InputTag("particleFlowRecHitECAL"), ecalH);
486  addHits(ecalH.product());
487  }
488  catch(const cms::Exception& iE) {
489  std::cerr << iE.what();
490  }
491 
492  if (m_rnrHcal) {
493  try {
495  event->getByLabel(edm::InputTag("particleFlowRecHitHF"), hfH);
496  addHits(hfH.product());
497  }
498  catch(const cms::Exception& iE) {
499  std::cerr << iE.what();
500  }
501 
502 
503  try {
505  event->getByLabel(edm::InputTag("particleFlowRecHitHBHE"),hcalH);
506  addHits(hcalH.product());
507  }
508  catch(const cms::Exception& iE) {
509  std::cerr << iE.what();
510  }
511 
512  try {
514  event->getByLabel(edm::InputTag("particleFlowRecHitHO"),hcalH);
515  addHits(hcalH.product());
516  }
517  catch(const cms::Exception& iE) {
518  std::cerr << iE.what();
519 
520  }
521  }
522 
523 
524  //
525  // clusters
526  //
527  try {
529  event->getByLabel(edm::InputTag("particleFlowClusterECAL"), ecalClustersH);
530  addClusters(ecalClustersH.product());
531  }
532  catch (const cms::Exception& iE) {
533  std::cerr << iE.what();
534  }
535 
536  if (m_rnrHcal) {
537 
538  try {
540  event->getByLabel(edm::InputTag("particleFlowClusterHCAL"), hcalClustersH);
541  addClusters(hcalClustersH.product());
542  }
543  catch (const cms::Exception& iE) {
544  std::cerr << iE.what();
545  }
546 
547  try {
549  event->getByLabel(edm::InputTag("particleFlowClusterHO"), hcalClustersH);
550  addClusters(hcalClustersH.product());
551  }
552  catch (const cms::Exception& iE) {
553  std::cerr << iE.what();
554  }
555 
556 
557 
558  }
559 
560  //
561  // tracks
562  //
563  try {
565  event->getByLabel(edm::InputTag("pfTrack"),trackH);
566  addTracks(trackH.product());
567  }
568  catch (const cms::Exception& iE) {
569  std::cerr << iE.what();
570  }
571 
572 }
573 
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:346
#define REGISTER_FWDETAILVIEW(_classname_, _name_,...)
virtual double eta() const
momentum pseudorapidity
virtual double pt() const
transverse momentum
float float float z
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
Definition: DDAxes.h:10
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 > *)