CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
FWPhotonDetailView.cc
Go to the documentation of this file.
1 //
2 // Package: Electrons
3 // Class : FWPhotonDetailView
4 // $Id: FWPhotonDetailView.cc,v 1.30 2011/11/18 02:57:08 amraktad Exp $
5 
6 #include "TLatex.h"
7 #include "TEveCalo.h"
8 #include "TEvePointSet.h"
9 #include "TEveScene.h"
10 #include "TEveViewer.h"
11 #include "TGLViewer.h"
12 #include "TCanvas.h"
13 #include "TEveCaloLegoOverlay.h"
14 
17 
23 
24 //
25 // constructors and destructor
26 //
28 m_data(0),
29 m_builder(0)
30 {
31 }
32 
34 {
35  m_eveViewer->GetGLViewer()->DeleteOverlayElements(TGLOverlayElement::kUser);
36 
37  if (m_data) m_data->DecDenyDestroy();
38  delete m_builder;
39 }
40 
41 //
42 // member functions
43 //
44 void FWPhotonDetailView::build (const FWModelId &id, const reco::Photon* iPhoton)
45 {
46  if(!iPhoton) return;
47 
48  // build ECAL objects
49  m_builder = new FWECALDetailViewBuilder(id.item()->getEvent(), id.item()->getGeom(),
50  iPhoton->caloPosition().eta(), iPhoton->caloPosition().phi(), 25);
52 
53  if ( iPhoton->superCluster().isAvailable() )
54  m_builder->showSuperCluster(*(iPhoton->superCluster()), kYellow);
55 
56  TEveCaloLego* lego = m_builder->build();
57  m_data = lego->GetData();
58  m_data->IncDenyDestroy();
59  m_eveScene->AddElement(lego);
60 
61  // add Photon specific details
62  if( iPhoton->superCluster().isAvailable() )
63  addSceneInfo(iPhoton, m_eveScene);
64 
65  // draw axis at the window corners
66  TEveCaloLegoOverlay* overlay = new TEveCaloLegoOverlay();
67  overlay->SetShowPlane(kFALSE);
68  overlay->SetShowPerspective(kFALSE);
69  overlay->SetCaloLego(lego);
70  overlay->SetShowScales(1); // temporary
71  viewerGL()->AddOverlayElement(overlay);
72 
73  // set event handler and flip camera to top view at beginning
74  viewerGL()->SetCurrentCamera(TGLViewer::kCameraOrthoXOY);
75  FWGLEventHandler* eh =
76  new FWGLEventHandler((TGWindow*)viewerGL()->GetGLWidget(), (TObject*)viewerGL(), lego);
77  viewerGL()->SetEventHandler(eh);
78  viewerGL()->UpdateScene();
79  viewerGL()->CurrentCamera().Reset();
80 
81  viewerGL()->RequestDraw(TGLRnrCtx::kLODHigh);
82 
83  setTextInfo(id, iPhoton);
84 }
85 
86 //______________________________________________________________________________
87 
88 void
90 {
91  m_infoCanvas->cd();
92  float_t x = 0.02;
93  float y = 0.97;
94  TLatex* latex = new TLatex(x, y, "");
95  const double textsize(0.05);
96  latex->SetTextSize(2*textsize);
97 
98  float h = latex->GetTextSize()*0.6;
99  latex->DrawLatex(x, y, id.item()->modelName(id.index()).c_str() );
100  y -= h;
101 
102  latex->DrawLatex(x, y, Form(" E_{T} = %.1f GeV, #eta = %0.2f, #varphi = %0.2f",
103  photon->et(), photon->eta(), photon->phi()) );
104  y -= h;
105  m_builder->makeLegend(x, y);
106 }
107 
108 //______________________________________________________________________________
109 
110 void
111 FWPhotonDetailView::addSceneInfo(const reco::Photon *i, TEveElementList* tList)
112 {
113  unsigned int subdetId(0);
114  if ( !i->superCluster()->seed()->hitsAndFractions().empty() )
115  subdetId = i->superCluster()->seed()->hitsAndFractions().front().first.subdetId();
116 
117  // points for centroids
118  Double_t x(0), y(0), z(0);
119  TEvePointSet *scposition = new TEvePointSet("sc position");
120  scposition->SetPickable(kTRUE);
121  scposition->SetTitle("Super cluster centroid");
122  if (subdetId == EcalBarrel) {
123  x = i->caloPosition().eta();
124  y = i->caloPosition().phi();
125  } else if (subdetId == EcalEndcap) {
126  x = i->caloPosition().x();
127  y = i->caloPosition().y();
128  }
129  scposition->SetNextPoint(x,y,z);
130  scposition->SetMarkerSize(1);
131  scposition->SetMarkerStyle(4);
132  scposition->SetMarkerColor(kBlue);
133  tList->AddElement(scposition);
134 
135  // points for seed position
136  TEvePointSet *seedposition = new TEvePointSet("seed position");
137  seedposition->SetTitle("Seed cluster centroid");
138  seedposition->SetPickable(kTRUE);
139  if (subdetId == EcalBarrel) {
140  x = i->superCluster()->seed()->position().eta();
141  y = i->superCluster()->seed()->position().phi();
142  seedposition->SetMarkerSize(0.01);
143  } else if (subdetId == EcalEndcap) {
144  x = i->superCluster()->seed()->position().x();
145  y = i->superCluster()->seed()->position().y();
146  seedposition->SetMarkerSize(1);
147  }
148  seedposition->SetNextPoint(x, y, z);
149  seedposition->SetMarkerStyle(2);
150  seedposition->SetMarkerColor(kRed);
151  tList->AddElement(seedposition);
152 }
153 
void showSuperCluster(const reco::SuperCluster &cluster, Color_t color=kYellow)
int i
Definition: DBlmapReader.cc:9
TGLViewer * viewerGL() const
double makeLegend(double x0=0.02, double y0=0.95, Color_t clustered1=kGreen+1, Color_t clustered2=kTeal, Color_t supercluster=kYellow)
virtual double et() const
transverse energy
const FWEventItem * item()
reco::SuperClusterRef superCluster() const
Ref to SuperCluster.
Definition: Photon.cc:59
bool isAvailable() const
Definition: Ref.h:276
virtual double eta() const
momentum pseudorapidity
double double double z
FWECALDetailViewBuilder * m_builder
math::XYZPointF caloPosition() const
position in ECAL: this is th SC position if r9<0.93. If r8>0.93 is position of seed BasicCluster taki...
Definition: Photon.h:79
virtual void build(const FWModelId &id, const reco::Photon *)
TEveCaloData * m_data
void showSuperClusters(Color_t color1=kGreen+2, Color_t color2=kTeal)
The Signals That Services Can Subscribe To This is based on ActivityRegistry h
Helper function to determine trigger accepts.
Definition: Activities.doc:4
void addSceneInfo(const reco::Photon *, TEveElementList *)
virtual void setTextInfo(const FWModelId &id, const reco::Photon *)
#define REGISTER_FWDETAILVIEW(_classname_, _name_)
x
Definition: VDTMath.h:216
virtual double phi() const
momentum azimuthal angle