CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
FWCaloTowerDetailView.cc
Go to the documentation of this file.
1 #include "TLatex.h"
2 #include "TEveCalo.h"
3 #include "TEveScene.h"
4 #include "TGLViewer.h"
5 #include "TCanvas.h"
6 #include "TEveCaloLegoOverlay.h"
7 
9 
15 
16 //
17 // constructors and destructor
18 //
20 m_builder(0)
21 {
22 }
23 
25 {
26 }
27 
28 //
29 // member functions
30 //
31 void FWCaloTowerDetailView::build(const FWModelId &id, const CaloTower* iTower)
32 {
33  if(!iTower) return;
34 
35  // build ECAL objects
36  m_builder = new FWECALDetailViewBuilder(id.item()->getEvent(), id.item()->getGeom(),
37  iTower->eta(), iTower->phi(), 25);
39 
40  TEveCaloLego* lego = m_builder->build();
41  m_data = lego->GetData();
42  m_data->IncDenyDestroy();
43  m_eveScene->AddElement(lego);
44 
45  // draw axis at the window corners
46  TEveCaloLegoOverlay* overlay = new TEveCaloLegoOverlay();
47  overlay->SetShowPlane(kFALSE);
48  overlay->SetShowPerspective(kFALSE);
49  overlay->SetCaloLego(lego);
50  overlay->SetShowScales(1); // temporary
51  viewerGL()->AddOverlayElement(overlay);
52 
53  // set event handler and flip camera to top view at beginning
54  viewerGL()->SetCurrentCamera(TGLViewer::kCameraOrthoXOY);
55  FWGLEventHandler* eh =
56  new FWGLEventHandler((TGWindow*)viewerGL()->GetGLWidget(), (TObject*)viewerGL(), lego);
57  viewerGL()->SetEventHandler(eh);
58  viewerGL()->UpdateScene();
59  viewerGL()->CurrentCamera().Reset();
60 
61  viewerGL()->RequestDraw(TGLRnrCtx::kLODHigh);
62 
63  setTextInfo(id, iTower);
64 
65 }
66 
67 void
69 {
70  m_infoCanvas->cd();
71  float_t x = 0.02;
72  float y = 0.97;
73  TLatex* latex = new TLatex(x, y, "");
74  const double textsize(0.05);
75  latex->SetTextSize(textsize);
76 
77  float h = latex->GetTextSize()*0.6;
78  latex->DrawLatex(x, y, "ECAL hit detail view centered on tower:" );
79  y -= h;
80  latex->DrawLatex(x, y, Form(" %s",id.item()->modelName(id.index()).c_str()) );
81  y -= h;
82  latex->DrawLatex(x, y, Form(" E_{T}(em) = %.1f GeV, E_{T}(had) = %.1f GeV",
83  tower->emEt(), tower->hadEt()) );
84  y -= h;
85  latex->DrawLatex(x, y, Form(" #eta = %0.2f, #varphi = %0.2f",
86  tower->eta(), tower->phi()) );
87  y -= h;
88  m_builder->makeLegend(x, y);
89 }
90 
FWECALDetailViewBuilder * m_builder
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)
double hadEt() const
Definition: CaloTower.h:85
const FWEventItem * item()
virtual double eta() const
momentum pseudorapidity
virtual void build(const FWModelId &id, const CaloTower *)
void showSuperClusters(Color_t color1=kGreen+2, Color_t color2=kTeal)
#define REGISTER_FWDETAILVIEW(_classname_, _name_)
Definition: DDAxes.h:10
The Signals That Services Can Subscribe To This is based on ActivityRegistry h
Helper function to determine trigger accepts.
Definition: Activities.doc:4
virtual double phi() const
momentum azimuthal angle
double emEt() const
Definition: CaloTower.h:84
virtual void setTextInfo(const FWModelId &, const CaloTower *)