CMS 3D CMS Logo

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 ()
 
 ~FWPFCandidateDetailView () override
 
- Public Member Functions inherited from FWDetailViewGL< reco::PFCandidate >
 FWDetailViewGL ()
 
void init (TEveWindowSlot *) override
 
void setBackgroundColor (Color_t) override
 
TGLViewer * viewerGL () const
 
 ~FWDetailViewGL () override
 
- Public Member Functions inherited from FWDetailView< reco::PFCandidate >
void build (const FWModelId &iID, const void *iData) override
 
 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 *) override
 
void buildGLEventScene ()
 
float eta ()
 
float etaMax ()
 
float etaMin ()
 
 FWPFCandidateDetailView (const FWPFCandidateDetailView &)=delete
 
bool isPntInRng (float x, float y)
 
void makeLegend (void)
 
const FWPFCandidateDetailViewoperator= (const FWPFCandidateDetailView &)=delete
 
float phi ()
 
float phiMax ()
 
float phiMin ()
 
void plotEtChanged ()
 
void rangeChanged (int x)
 
void rnrHcalChanged ()
 
void setTextInfo (const FWModelId &id, const reco::PFCandidate *) override
 
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 24 of file FWPFCandidateDetailView.h.

Constructor & Destructor Documentation

FWPFCandidateDetailView::FWPFCandidateDetailView ( )

Definition at line 50 of file FWPFCandidateDetailView.cc.

50  :
51  m_range(1),
52  m_candidate(nullptr),
53  m_legend(nullptr),
54  m_slider(nullptr),
56  m_eventList(nullptr),
57  m_plotEt(true),
58  m_rnrHcal(true)
59 {}
FWIntValueListener * m_sliderListener
const reco::PFCandidate * m_candidate
FWPFCandidateDetailView::~FWPFCandidateDetailView ( )
override

Definition at line 61 of file FWPFCandidateDetailView.cc.

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

Member Function Documentation

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

Definition at line 305 of file FWPFCandidateDetailView.cc.

References Abs(), cuy::col, AnalysisDataFormats_SUSYBSMObjects::hc, mps_fire::i, isPntInRng(), eostools::ls(), m_eventList, TwoPi, and y.

Referenced by buildGLEventScene().

306 {
307  if (!cluster) return;
308 
309  Color_t col = kViolet+9;
310 
311  TEveStraightLineSet* ls = new TEveStraightLineSet("cluster_ls");
312  ls->SetMainColor(col);
313  m_eventList->AddElement(ls);
314 
315  TEvePointSet* ps = new TEvePointSet("cluster_ps");
316  ps->SetMainColor(col);
317  ps->SetMarkerStyle(2);
318  ps->SetMarkerSize(0.005);
319  m_eventList->AddElement(ps);
320 
321  for (std::vector<reco::PFCluster>::const_iterator it = cluster->begin(); it != cluster->end(); ++it)
322  {
323  if (!isPntInRng(it->position().Eta(), it->position().Phi()))
324  continue;
325 
326  ps->SetNextPoint(it->position().Eta(), it->position().Phi(), 0);
327 
328  /*
329  const std::vector< reco::PFRecHitFraction >& fractions = it->recHitFractions();
330  for (std::vector< reco::PFRecHitFraction >::const_iterator fi = fractions.begin(); fi != fractions.end(); ++fi)
331  {
332  // !!! AMT can't get fi->recHitRef().position()
333  // ls->AddLine(it->position().Eta(), it->position().Phi(), 0,
334  // fi->recHitRef().position().Eta(), fi->recHitRef().position().Phi(), 0);
335  }
336  */
337 
338  }
339 }
bool isPntInRng(float x, float y)
def ls(path, rec=False)
Definition: eostools.py:348
col
Definition: cuy.py:1009
void FWPFCandidateDetailView::addHits ( const std::vector< reco::PFRecHit > *  hits)
private

Definition at line 376 of file FWPFCandidateDetailView.cc.

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

Referenced by buildGLEventScene().

377 {
378 
379  TEveStraightLineSet* lsOutline = ( TEveStraightLineSet*)m_eventList->FindChild("outlines");
380 
381  TEvePointSet* ps = new TEvePointSet("test");
382  m_eventList->AddElement(ps);
383  ps->SetMainColor(kOrange);
384 
385  // FIXME, requires access to geometry
386  if ( (!hits->empty()) && hits->front().hasCaloCell())
387  for (std::vector<reco::PFRecHit>::const_iterator it = hits->begin(); it != hits->end(); ++it)
388  {
389  const auto & corners = it->getCornersXYZ();
390  if (!isPntInRng(corners[0].eta(), corners[0].phi()))
391  continue;
392 
393  std::vector<TEveVector> hc;
394  for (int k = 0; k < 4; ++k) {
395  hc.push_back(TEveVector(corners[k].eta(), corners[k].phi(), 0));
396  // ps->SetNextPoint(corners[k].eta(),corners[k].phi(),0 ); //debug
397  }
398 
399  WrapTwoPi(hc, corners[0].phi());
400 
401  AddLineToLineSet(lsOutline, hc, 0, 1);
402  AddLineToLineSet(lsOutline, hc, 1, 2);
403  AddLineToLineSet(lsOutline, hc, 2, 3);
404  AddLineToLineSet(lsOutline, hc, 3, 0);
405 
406 
407  // get scaled corners
408  TEveVector centerOfGravity = hc[0] + hc[1] + hc[2] + hc[3];
409  centerOfGravity *= 0.25;
410 
411  std::vector<TEveVector> radialVectors;
412  for (int k = 0; k < 4; ++k)
413  radialVectors.push_back(TEveVector(hc[k] - centerOfGravity));
414 
415  float factor = 1;
416  if (m_plotEt) {
417  float Et = FWPFMaths::calculateEt( TEveVector(corners[0].x(), corners[0].y(), corners[0].z()), it->energy());
418  factor = Et/context().getMaxEnergyInEvent(m_plotEt);
419  }
420  else
421  factor = it->energy()/context().getMaxEnergyInEvent(false);
422 
423 
424  std::vector<TEveVector> scaledCorners;
425  for (int k = 0; k < 4; ++k) {
426  radialVectors[k] *= factor;
427  scaledCorners.push_back(TEveVector(radialVectors[k] + centerOfGravity));
428  }
429 
430  TEveStraightLineSet* ls = ( TEveStraightLineSet*)m_eventList->FindChild(Form("%d_rechit", it->depth() ));
431  AddLineToLineSet(ls, scaledCorners, 0, 1);
432  AddLineToLineSet(ls, scaledCorners, 1, 2);
433  AddLineToLineSet(ls, scaledCorners, 2, 3);
434  // AddLineToLineSet(ls, scaledCorners, 3, 0);
435  TEveStraightLineSet::Line_t* li = AddLineToLineSet(ls, scaledCorners, 3, 0);
436  ls->AddMarker(centerOfGravity, li->fId);
437 
438  }
439 }
bool isPntInRng(float x, float y)
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
int k[5][pyjets_maxn]
def ls(path, rec=False)
Definition: eostools.py:348
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 278 of file FWPFCandidateDetailView.cc.

Referenced by buildGLEventScene().

279 {
280  for (std::vector<reco::PFRecTrack>::const_iterator it = tracks->begin(); it != tracks->end(); ++it)
281  {
283  /*
284  if (!isPntInRng(it->trackRef().innerMomentum().Eta(), it->position().Phi()))
285  continue;
286 
287  TEveLine* line = new TEveLine("Track");
288  line->SetMainColor(kYellow);
289  int N = it->nTrajectoryPoints();
290 
291  for (int p = 0 ; p<N; ++p) {
292  pos = track.extrapolatedPoint(p).position();
293 
294  if( pos.Eta() !=0 and pos.Phi() !=0)
295  line->SetNextPoint(pos.Eta(), pos.Phi(), 0);
296  }
297  m_eventList->AddElement(line);
298  */
299 
300  }
301 }
void FWPFCandidateDetailView::build ( const FWModelId id,
const reco::PFCandidate candidate 
)
overrideprivatevirtual

Implements FWDetailView< reco::PFCandidate >.

Definition at line 167 of file FWPFCandidateDetailView.cc.

References mps_fire::action, CSGAction::activated, b, buildGLEventScene(), MessageLogger_cfi::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
FWIntValueListener * m_sliderListener
sigc::signal< void > activated
Definition: CSGAction.h:88
void setTextInfo(const FWModelId &id, const reco::PFCandidate *) override
char const * what() const override
Definition: Exception.cc:141
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
void FWPFCandidateDetailView::buildGLEventScene ( )
private

Definition at line 445 of file FWPFCandidateDetailView.cc.

References addClusters(), addHits(), addTracks(), configurableAnalysis::Candidate, MessageLogger_cfi::cerr, egammaForCoreTracking_cff::depth, FWGUIManager::getCurrentEvent(), FWGUIManager::getGUIManager(), eostools::ls(), m_eventList, m_rnrHcal, particleFlowRecHitECAL_cfi::particleFlowRecHitECAL, particleFlowRecHitHF_cfi::particleFlowRecHitHF, edm::Handle< T >::product(), REGISTER_FWDETAILVIEW, and cms::Exception::what().

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

446 {
447  if (m_eventList->HasChildren()) m_eventList->DestroyElements();
448 
449 
450  for (int depth = 0; depth < 6; ++depth)
451  {
452  TEveStraightLineSet* ls = new TEveStraightLineSet(Form("%d_rechit", depth));
453 
454  if (depth == 0 ) ls->SetLineColor(kGray);
455  else if (depth == 1 ) ls->SetLineColor(kRed);
456  else if (depth == 2 ) ls->SetLineColor(kGreen);
457  else if (depth == 3 ) ls->SetLineColor(kMagenta);
458  else if (depth == 4 ) ls->SetLineColor(kOrange);
459  else if (depth == 5 ) ls->SetLineColor(kYellow);
460 
461  ls->SetMarkerStyle(1);
462  m_eventList->AddElement(ls);
463  }
464 
465  TEveStraightLineSet* ls = new TEveStraightLineSet("outlines");
466  ls->SetLineColor(kGray);
467  ls->SetMainTransparency(80);
468  m_eventList->AddElement(ls);
469 
470 
472 
473 
474  //
475  // recHits
476  //
477  try {
479  event->getByLabel(edm::InputTag("particleFlowRecHitECAL"), ecalH);
480  addHits(ecalH.product());
481  }
482  catch(const cms::Exception& iE) {
483  std::cerr << iE.what();
484  }
485 
486  if (m_rnrHcal) {
487  try {
489  event->getByLabel(edm::InputTag("particleFlowRecHitHF"), ecalH);
490  addHits(ecalH.product());
491  }
492  catch(const cms::Exception& iE) {
493  std::cerr << iE.what();
494  }
495 
496 
497  try {
499  event->getByLabel(edm::InputTag("particleFlowRecHitHBHEHO"),hcalH);
500  addHits(hcalH.product());
501  }
502  catch (const cms::Exception& iE) {
503  std::cerr << iE.what();
504  }
505 
506  }
507 
508 
509  //
510  // clusters
511  //
512  try {
514  event->getByLabel(edm::InputTag("particleFlowClusterECAL"), ecalClustersH);
515  addClusters(ecalClustersH.product());
516  }
517  catch (const cms::Exception& iE) {
518  std::cerr << iE.what();
519  }
520 
521  //
522  // tracks
523  //
524  try {
526  event->getByLabel(edm::InputTag("pfTrack"),trackH);
527  addTracks(trackH.product());
528  }
529  catch (const cms::Exception& iE) {
530  std::cerr << iE.what();
531  }
532 
533 }
char const * what() const override
Definition: Exception.cc:141
const edm::EventBase * getCurrentEvent() const
def ls(path, rec=False)
Definition: eostools.py:348
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(), Jet.Jet::jetID(), and Jet.Jet::puJetId().

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

Definition at line 62 of file FWPFCandidateDetailView.h.

References PVValHelper::eta.

float FWPFCandidateDetailView::etaMin ( )
inlineprivate

Definition at line 61 of file FWPFCandidateDetailView.h.

References PVValHelper::eta.

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

Definition at line 76 of file FWPFCandidateDetailView.cc.

References PVValHelper::dx, PVValHelper::dy, 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 }
double eta() const final
momentum pseudorapidity
double sd
const reco::PFCandidate * m_candidate
double phi() const final
momentum azimuthal angle
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, nullptr, "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 )
privatedelete
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(), and ntupleDataFormat.Track::phiPull().

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

Definition at line 64 of file FWPFCandidateDetailView.h.

float FWPFCandidateDetailView::phiMin ( )
inlineprivate

Definition at line 63 of file FWPFCandidateDetailView.h.

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 
)
overrideprivatevirtual

Implements FWDetailView< reco::PFCandidate >.

Definition at line 115 of file FWPFCandidateDetailView.cc.

References reco::LeafCandidate::charge(), reco::LeafCandidate::eta(), FWDetailViewBase::item(), FWDetailViewGL< reco::PFCandidate >::m_infoCanvas, m_legend, ecalBarrelClusterFastTimer_cfi::modelName, 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 = nullptr; // Deleted together with TPad.
146 }
double eta() const final
momentum pseudorapidity
const FWEventItem * item()
double pt() const final
transverse momentum
int charge() const final
electric charge
Definition: LeafCandidate.h:91
double phi() const final
momentum azimuthal angle
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  // FIXME: require access to geometry while reading from reco file
265  if ( (!hits->empty()) && hits->front().hasCaloCell())
266  for (std::vector<reco::PFRecHit>::const_iterator it = hits->begin(); it != hits->end(); ++it)
267  {
268  TEveVector centre(it->position().x(), it->position().y(), it->position().z());
269  float E = it->energy();
270  float Et = FWPFMaths::calculateEt( centre, E );
271  item()->context().voteMaxEtAndEnergy(Et , E );
272  }
273 }
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 68 of file FWPFCandidateDetailView.h.

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

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

Definition at line 70 of file FWPFCandidateDetailView.h.

Referenced by makeLegend(), and setTextInfo().

bool FWPFCandidateDetailView::m_plotEt
private

Definition at line 78 of file FWPFCandidateDetailView.h.

Referenced by addHits(), and plotEtChanged().

float FWPFCandidateDetailView::m_range
private

Definition at line 67 of file FWPFCandidateDetailView.h.

Referenced by isPntInRng(), and rangeChanged().

bool FWPFCandidateDetailView::m_rnrHcal
private

Definition at line 81 of file FWPFCandidateDetailView.h.

Referenced by buildGLEventScene(), and rnrHcalChanged().

TGSlider* FWPFCandidateDetailView::m_slider
private

Definition at line 72 of file FWPFCandidateDetailView.h.

Referenced by build().

FWIntValueListener* FWPFCandidateDetailView::m_sliderListener
private

Definition at line 73 of file FWPFCandidateDetailView.h.

Referenced by build().