CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
List of all members | Public Member Functions | Private Member Functions | Private Attributes
FWPFCandidateDetailView Class Reference

#include <FWPFCandidateDetailView.h>

Inheritance diagram for FWPFCandidateDetailView:
FWDetailViewGL< reco::PFCandidate > CSGActionSupervisor FWDetailView< reco::PFCandidate > FWDetailViewBase

Public Member Functions

 FWPFCandidateDetailView ()
 
virtual ~FWPFCandidateDetailView ()
 
- Public Member Functions inherited from FWDetailViewGL< reco::PFCandidate >
 FWDetailViewGL ()
 
virtual void init (TEveWindowSlot *)
 
virtual void setBackgroundColor (Color_t)
 
TGLViewer * viewerGL () const
 
virtual ~FWDetailViewGL ()
 
- Public Member Functions inherited from FWDetailView< reco::PFCandidate >
virtual void build (const FWModelId &iID, const void *iData)
 
 FWDetailView ()
 
- Public Member Functions inherited from FWDetailViewBase
void build (const FWModelId &)
 
const fireworks::Contextcontext () const
 
const FWEventItemitem ()
 
void setItem (const FWEventItem *x)
 
virtual ~FWDetailViewBase ()
 
- Public Member Functions inherited from CSGActionSupervisor
Bool_t activateMenuEntry (int entry)
 
Bool_t activateToolBarEntry (int entry)
 
void addToActionMap (CSGAction *action)
 
 CSGActionSupervisor ()
 
virtual void defaultAction ()
 
virtual void enableActions (bool enable=true)
 
CSGActiongetAction (const std::string &name)
 
const std::vector< CSGAction * > & getListOfActions () const
 
Long_t getToolTipDelay () const
 
virtual void HandleMenu (Int_t id)
 
void resizeMenu (TGPopupMenu *menu)
 
virtual ~CSGActionSupervisor ()
 

Private Member Functions

void addClusters (const std::vector< reco::PFCluster > *)
 
void addHits (const std::vector< reco::PFRecHit > *)
 
void addTracks (const std::vector< reco::PFRecTrack > *)
 
void build (const FWModelId &id, const reco::PFCandidate *)
 
void buildGLEventScene ()
 
float eta ()
 
float etaMax ()
 
float etaMin ()
 
 FWPFCandidateDetailView (const FWPFCandidateDetailView &)
 
bool isPntInRng (float x, float y)
 
void makeLegend (void)
 
const FWPFCandidateDetailViewoperator= (const FWPFCandidateDetailView &)
 
float phi ()
 
float phiMax ()
 
float phiMin ()
 
void plotEtChanged ()
 
void rangeChanged (int x)
 
void rnrHcalChanged ()
 
void setTextInfo (const FWModelId &id, const reco::PFCandidate *)
 
void voteMaxEtEVal (const std::vector< reco::PFRecHit > *hits)
 

Private Attributes

const reco::PFCandidatem_candidate
 
TEveElementList * m_eventList
 
TLegend * m_legend
 
bool m_plotEt
 
float m_range
 
bool m_rnrHcal
 
TGSlider * m_slider
 
FWIntValueListenerm_sliderListener
 

Additional Inherited Members

- Static Public Member Functions inherited from FWDetailView< reco::PFCandidate >
static std::string classRegisterTypeName ()
 
static std::string classTypeName ()
 
- Static Public Member Functions inherited from FWDetailViewBase
static void drawCanvasBox (Double_t *pos, Color_t fillCol, Int_t fillType=0, bool bg=kTRUE)
 
static void drawCanvasDot (Float_t x, Float_t y, Float_t r, Color_t)
 
- Protected Member Functions inherited from FWDetailViewBase
 FWDetailViewBase (const std::type_info &)
 
- Protected Attributes inherited from FWDetailViewGL< reco::PFCandidate >
TEveScene * m_eveScene
 
TEveViewer * m_eveViewer
 
TGCompositeFrame * m_guiFrame
 
TCanvas * m_infoCanvas
 
- Protected Attributes inherited from CSGActionSupervisor
std::vector< CSGAction * > m_actionList
 

Detailed Description

Definition at line 23 of file FWPFCandidateDetailView.h.

Constructor & Destructor Documentation

FWPFCandidateDetailView::FWPFCandidateDetailView ( )

Definition at line 50 of file FWPFCandidateDetailView.cc.

FWPFCandidateDetailView::~FWPFCandidateDetailView ( )
virtual

Definition at line 61 of file FWPFCandidateDetailView.cc.

62 {
63 }
FWPFCandidateDetailView::FWPFCandidateDetailView ( const FWPFCandidateDetailView )
private

Member Function Documentation

void FWPFCandidateDetailView::addClusters ( const std::vector< reco::PFCluster > *  cluster)
private

Definition at line 303 of file FWPFCandidateDetailView.cc.

References cuy::col, isPntInRng(), eostools::ls(), and m_eventList.

Referenced by buildGLEventScene().

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 }
bool isPntInRng(float x, float y)
def ls
Definition: eostools.py:348
int col
Definition: cuy.py:1008
void FWPFCandidateDetailView::addHits ( const std::vector< reco::PFRecHit > *  hits)
private

Definition at line 374 of file FWPFCandidateDetailView.cc.

References FWPFMaths::calculateEt(), FWDetailViewBase::context(), eta(), fireworks::Context::getMaxEnergyInEvent(), AnalysisDataFormats_SUSYBSMObjects::hc, isPntInRng(), relval_2017::k, m_eventList, m_plotEt, phi(), x, y, and z.

Referenced by buildGLEventScene().

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 }
bool isPntInRng(float x, float y)
def ls
Definition: eostools.py:348
const fireworks::Context & context() const
float getMaxEnergyInEvent(bool isEt) const
Definition: Context.cc:199
float calculateEt(const TEveVector &centre, float e)
Definition: FWPFMaths.cc:115
susybsm::HSCParticleCollection hc
Definition: classes.h:25
void FWPFCandidateDetailView::addTracks ( const std::vector< reco::PFRecTrack > *  tracks)
private

AMT trackRef() is a collection !!!

Definition at line 276 of file FWPFCandidateDetailView.cc.

Referenced by buildGLEventScene().

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 }
tuple tracks
Definition: testEve_cfg.py:39
void FWPFCandidateDetailView::build ( const FWModelId id,
const reco::PFCandidate candidate 
)
privatevirtual

Implements FWDetailView< reco::PFCandidate >.

Definition at line 167 of file FWPFCandidateDetailView.cc.

References mps_fire::action, CSGAction::activated, b, buildGLEventScene(), ecal_dqm_sourceclient-live_cfg::cerr, f, FWGUIManager::getCurrentEvent(), FWGUIManager::getGUIManager(), CSGAction::getName(), m_candidate, m_eventList, FWDetailViewGL< reco::PFCandidate >::m_eveScene, FWDetailViewGL< reco::PFCandidate >::m_guiFrame, m_slider, m_sliderListener, makeLegend(), AlCaHLTBitMon_ParallelJobs::p, plotEtChanged(), edm::Handle< T >::product(), rangeChanged(), rnrHcalChanged(), setTextInfo(), FWIntValueListener::valueChanged_, FWDetailViewGL< reco::PFCandidate >::viewerGL(), voteMaxEtEVal(), and cms::Exception::what().

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 }
const std::string & getName() const
Definition: CSGAction.cc:81
virtual char const * what() const
Definition: Exception.cc:141
FWIntValueListener * m_sliderListener
sigc::signal< void > activated
Definition: CSGAction.h:88
sigc::signal< void, Int_t > valueChanged_
double f[11][100]
void voteMaxEtEVal(const std::vector< reco::PFRecHit > *hits)
const edm::EventBase * getCurrentEvent() const
T const * product() const
Definition: Handle.h:81
static FWGUIManager * getGUIManager()
const reco::PFCandidate * m_candidate
double b
Definition: hdecay.h:120
string action
Definition: mps_fire.py:28
void setTextInfo(const FWModelId &id, const reco::PFCandidate *)
void FWPFCandidateDetailView::buildGLEventScene ( )
private

Definition at line 441 of file FWPFCandidateDetailView.cc.

References addClusters(), addHits(), addTracks(), ecal_dqm_sourceclient-live_cfg::cerr, HLT_25ns10e33_v2_cff::depth, FWGUIManager::getCurrentEvent(), FWGUIManager::getGUIManager(), m_eventList, m_rnrHcal, edm::Handle< T >::product(), and cms::Exception::what().

Referenced by build(), plotEtChanged(), rangeChanged(), and rnrHcalChanged().

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 }
virtual char const * what() const
Definition: Exception.cc:141
def ls
Definition: eostools.py:348
const edm::EventBase * getCurrentEvent() const
T const * product() const
Definition: Handle.h:81
static FWGUIManager * getGUIManager()
void addHits(const std::vector< reco::PFRecHit > *)
void addClusters(const std::vector< reco::PFCluster > *)
void addTracks(const std::vector< reco::PFRecTrack > *)
float FWPFCandidateDetailView::eta ( void  )
private

Definition at line 66 of file FWPFCandidateDetailView.cc.

References reco::LeafCandidate::eta(), and m_candidate.

Referenced by Particle.Particle::__str__(), addHits(), etaMax(), etaMin(), Jet.Jet::jetID(), and Jet.Jet::puJetId().

67 {
68  return m_candidate->eta();
69 }
const reco::PFCandidate * m_candidate
virtual double eta() const final
momentum pseudorapidity
float FWPFCandidateDetailView::etaMax ( )
inlineprivate

Definition at line 61 of file FWPFCandidateDetailView.h.

References eta(), and m_range.

float FWPFCandidateDetailView::etaMin ( )
inlineprivate

Definition at line 60 of file FWPFCandidateDetailView.h.

References eta(), and m_range.

bool FWPFCandidateDetailView::isPntInRng ( float  x,
float  y 
)
private

Definition at line 76 of file FWPFCandidateDetailView.cc.

References reco::LeafCandidate::eta(), m_candidate, m_range, reco::LeafCandidate::phi(), sd, x, and y.

Referenced by addClusters(), and addHits().

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 }
virtual double phi() const final
momentum azimuthal angle
double sd
const reco::PFCandidate * m_candidate
virtual double eta() const final
momentum pseudorapidity
void FWPFCandidateDetailView::makeLegend ( void  )
private

Definition at line 87 of file FWPFCandidateDetailView.cc.

References m_legend.

Referenced by build().

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 }
const FWPFCandidateDetailView& FWPFCandidateDetailView::operator= ( const FWPFCandidateDetailView )
private
float FWPFCandidateDetailView::phi ( void  )
private

Definition at line 71 of file FWPFCandidateDetailView.cc.

References m_candidate, and reco::LeafCandidate::phi().

Referenced by Particle.Particle::__str__(), addHits(), phiMax(), and phiMin().

72 {
73  return m_candidate->phi();
74 }
virtual double phi() const final
momentum azimuthal angle
const reco::PFCandidate * m_candidate
float FWPFCandidateDetailView::phiMax ( )
inlineprivate

Definition at line 63 of file FWPFCandidateDetailView.h.

References m_range, and phi().

float FWPFCandidateDetailView::phiMin ( )
inlineprivate

Definition at line 62 of file FWPFCandidateDetailView.h.

References m_range, and phi().

void FWPFCandidateDetailView::plotEtChanged ( )
private

Definition at line 149 of file FWPFCandidateDetailView.cc.

References buildGLEventScene(), and m_plotEt.

Referenced by build().

150 {
151  printf("plotEt = %d \n", m_plotEt);
152  m_plotEt = !m_plotEt;
154 }
void FWPFCandidateDetailView::rangeChanged ( int  x)
private

Definition at line 100 of file FWPFCandidateDetailView.cc.

References buildGLEventScene(), m_eventList, and m_range.

Referenced by build().

101 {
102  static float kSliderRangeFactor = 0.2;
103 
104  m_range = x * kSliderRangeFactor;
105 
107 
108 
109  gEve->Redraw3D();
110 }
void FWPFCandidateDetailView::rnrHcalChanged ( )
private

Definition at line 157 of file FWPFCandidateDetailView.cc.

References buildGLEventScene(), and m_rnrHcal.

Referenced by build().

158 {
159  printf("rnrHcal = %d \n", m_rnrHcal);
160  m_rnrHcal = !m_rnrHcal;
162 }
void FWPFCandidateDetailView::setTextInfo ( const FWModelId id,
const reco::PFCandidate track 
)
privatevirtual

Implements FWDetailView< reco::PFCandidate >.

Definition at line 115 of file FWPFCandidateDetailView.cc.

References reco::LeafCandidate::charge(), reco::LeafCandidate::eta(), cmsHarvester::index, FWDetailViewBase::item(), FWDetailViewGL< reco::PFCandidate >::m_infoCanvas, m_legend, reco::LeafCandidate::phi(), reco::LeafCandidate::pt(), x, and y.

Referenced by build().

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 }
const FWEventItem * item()
virtual double phi() const final
momentum azimuthal angle
virtual int charge() const final
electric charge
Definition: LeafCandidate.h:91
virtual double eta() const final
momentum pseudorapidity
virtual double pt() const final
transverse momentum
void FWPFCandidateDetailView::voteMaxEtEVal ( const std::vector< reco::PFRecHit > *  hits)
private

Definition at line 260 of file FWPFCandidateDetailView.cc.

References FWPFMaths::calculateEt(), FWEventItem::context(), FWDetailViewBase::item(), and fireworks::Context::voteMaxEtAndEnergy().

Referenced by build().

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 }
void voteMaxEtAndEnergy(float Et, float energy) const
Definition: Context.cc:183
const FWEventItem * item()
const fireworks::Context & context() const
Definition: FWEventItem.h:128
float calculateEt(const TEveVector &centre, float e)
Definition: FWPFMaths.cc:115

Member Data Documentation

const reco::PFCandidate* FWPFCandidateDetailView::m_candidate
private

Definition at line 67 of file FWPFCandidateDetailView.h.

Referenced by build(), eta(), isPntInRng(), and phi().

TEveElementList* FWPFCandidateDetailView::m_eventList
private
TLegend* FWPFCandidateDetailView::m_legend
private

Definition at line 69 of file FWPFCandidateDetailView.h.

Referenced by makeLegend(), and setTextInfo().

bool FWPFCandidateDetailView::m_plotEt
private

Definition at line 77 of file FWPFCandidateDetailView.h.

Referenced by addHits(), and plotEtChanged().

float FWPFCandidateDetailView::m_range
private

Definition at line 66 of file FWPFCandidateDetailView.h.

Referenced by etaMax(), etaMin(), isPntInRng(), phiMax(), phiMin(), and rangeChanged().

bool FWPFCandidateDetailView::m_rnrHcal
private

Definition at line 80 of file FWPFCandidateDetailView.h.

Referenced by buildGLEventScene(), and rnrHcalChanged().

TGSlider* FWPFCandidateDetailView::m_slider
private

Definition at line 71 of file FWPFCandidateDetailView.h.

Referenced by build().

FWIntValueListener* FWPFCandidateDetailView::m_sliderListener
private

Definition at line 72 of file FWPFCandidateDetailView.h.

Referenced by build().