15 #include <boost/bind.hpp>
16 #include <boost/shared_ptr.hpp>
18 #include "TGLViewer.h"
19 #include "TGLScenePad.h"
20 #include "TEveManager.h"
21 #include "TEveElement.h"
22 #include "TEveScene.h"
23 #include "TEveProjections.h"
24 #include "TEveProjectionAxes.h"
26 #include "TEveProjectionManager.h"
29 #define protected public
58 m_showPixelBarrel(this,
"Show Pixel Barrel",
false ),
59 m_showPixelEndcap(this,
"Show Pixel Endcap",
false),
60 m_showTrackerBarrel(this,
"Show Tracker Barrel",
false ),
61 m_showTrackerEndcap(this,
"Show Tracker Endcap",
false),
63 m_shiftOrigin(this,
"Shift origin to beam-spot",
false),
64 m_fishEyeDistortion(this,
"Distortion",0., 0., 100.),
65 m_fishEyeR(this,
"FixedRadius",(double)fireworks::
Context::
caloR1(), 0.0, 150.0),
67 m_caloDistortion(this,
"Calo compression",1.0,0.01,10.),
68 m_muonDistortion(this,
"Muon compression",0.2,0.01,10.),
69 m_showProjectionAxes(this,
"Show projection axis",
false),
70 m_projectionAxesLabelSize(this,
"Projection axis label size", 0.015, 0.001, 0.2),
71 m_compressMuon(this,
"Compress detectors",
false),
75 TEveProjection::EPType_e projType = (
id ==
FWViewType::kRhoZ) ? TEveProjection::kPT_RhoZ : TEveProjection::kPT_RPhi;
77 m_projMgr =
new TEveProjectionManager(projType);
84 #ifdef TEVEPROJECTIONS_DISPLACE_ORIGIN_MODE
90 m_projMgr->GetProjection()->AddPreScaleEntry(0, 300, 0.2);
93 m_projMgr->GetProjection()->AddPreScaleEntry(1, 310, 1.0);
94 m_projMgr->GetProjection()->AddPreScaleEntry(0, 370, 0.2);
95 m_projMgr->GetProjection()->AddPreScaleEntry(1, 580, 0.2);
100 viewerGL()->SetCurrentCamera(TGLViewer::kCameraOrthoXOY);
101 if ( TGLOrthoCamera* camera = dynamic_cast<TGLOrthoCamera*>( &(
viewerGL()->CurrentCamera()) ) ) {
102 camera->SetZoomMax(1e6);
104 geoScene()->GetGLScene()->SetSelectable(kFALSE);
144 return static_cast<TEveCaloViz*
>(
m_calo);
160 TEveCalo3D* calo3d =
new TEveCalo3D(data);
165 m_calo->SetBarrelRadius(177);
170 m_calo->SetAutoRange(
false);
171 m_calo->SetScaleAbs(
true);
189 TEveVector center(b.
x0(), b.
y0(), b.
z0());
190 m_projMgr->GetProjection()->SetCenter(center);
193 TGLCamera& cam =
viewerGL()->CurrentCamera();
194 cam.SetExternalCenter(
true);
197 double r = TMath::Sqrt( b.
x0()*b.
x0() + b.
y0()*b.
y0());
198 cam.SetCenterVec(b.
z0(), TMath::Sign(r, b.
y0()), 0);
202 cam.SetCenterVec(b.
x0(), b.
y0(), b.
z0());
217 #ifdef TEVEPROJECTIONS_DISPLACE_ORIGIN_MODE
219 TEveProjection*
p =
m_projMgr->GetProjection();
232 #ifdef TEVEPROJECTIONS_DISPLACE_ORIGIN_MODE
234 m_projMgr->GetProjection()->SetCenter(center);
238 float* pc =
m_projMgr->GetProjection()->GetProjectedCenter();
239 viewerGL()->CurrentCamera().SetExternalCenter(
true);
240 viewerGL()->CurrentCamera().SetCenterVec(pc[0], pc[1], pc[2]);
241 viewerGL()->SetDrawCameraCenter(
true);
252 #ifdef TEVEPROJECTIONS_DISPLACE_ORIGIN_MODE
254 TEveVector center(b.
x0(), b.
y0(), b.
z0());
255 m_projMgr->GetProjection()->SetCenter(center);
266 TEveProjection*
p =
m_projMgr->GetProjection();
296 m_projMgr->GetProjection()->SetUsePreScale(flag);
305 float oldLayer =
m_projMgr->GetCurrentDepth();
308 boost::shared_ptr<TEveProjectionManager> sentry(
m_projMgr,
309 boost::bind(&TEveProjectionManager::SetCurrentDepth,
311 m_projMgr->ImportElements(iChildren,iProjectedParent);
319 TGLOrthoCamera* camera =
dynamic_cast<TGLOrthoCamera*
>( &(
viewerGL()->CurrentCamera()) );
328 TGLOrthoCamera* camera =
dynamic_cast<TGLOrthoCamera*
>( &(
viewerGL()->CurrentCamera()) );
348 m_calo->SetEta(-eta_range,eta_range);
357 if (!
m_calo->GetData()->Empty())
359 m_calo->AssertCellIdCache();
361 TEveCaloData::CellData_t cellData;
362 typedef std::vector<TEveCaloData::vCellId_t*> vBinCells_t;
363 typedef std::vector<TEveCaloData::vCellId_t*>::iterator vBinCells_i;
365 vBinCells_t cellLists =
m_calo->fCellLists;
366 for (vBinCells_i it = cellLists.begin(); it != cellLists.end(); it++)
368 TEveCaloData::vCellId_t* binCells = *it;
371 TEveCaloData::vCellId_i
a = binCells->end();
373 for (TEveCaloData::vCellId_i
k = binCells->begin();
k !=
a; ++
k)
375 m_calo->GetData()->GetCellData((*
k), cellData);
376 sumEt += cellData.Value(
true);
377 sumE += cellData.Value(
false);
410 #ifdef TEVEPROJECTIONS_DISPLACE_ORIGIN_MODE
421 f->AddFrame(
new TGLabel(f,
"FishEye:"));
426 f->AddFrame(
new TGLabel(f,
"PreScales:"));
static float caloTransEta()
void doShiftOriginToBeamSpot()
void addToOrthoCamera(TGLOrthoCamera *, FWConfiguration &) const
void doFishEyeDistortion()
virtual void populateController(ViewerParameterGUI &) const
FWBoolParameter m_shiftOrigin
FWBoolParameter m_showProjectionAxes
FWRPZView(TEveWindowSlot *iParent, FWViewType::EType)
virtual TEveCaloViz * getEveCalo() const
virtual void setContext(const fireworks::Context &)
FWDoubleParameter m_projectionAxesLabelSize
virtual void populateController(ViewerParameterGUI &) const
void voteMaxEtAndEnergy(float Et, float energy) const
ViewerParameterGUI & requestTab(const char *)
virtual void setFrom(const FWConfiguration &)
const std::string & typeName() const
unsigned int version() const
virtual void setupEnergyScale()
TEveProjectionAxes * m_axes
TGLViewer * viewerGL() const
sigc::signal< void, T > changed_
FWParameters::Bool FWBoolParameter
FWBoolParameter * m_showHF
TEveProjectionManager * m_projMgr
FWDoubleParameter m_fishEyeR
void initStdGeoElements(const FWViewType::EType id)
FWBeamSpot * getBeamSpot() const
virtual void setFrom(const FWConfiguration &)
virtual void voteCaloMaxVal()
FWBoolParameter m_showTrackerBarrel
void showProjectionAxes()
static float caloR1(bool offset=true)
void importElements(TEveElement *iProjectableChild, float layer, TEveElement *iProjectedParent=0)
TEveCaloDataHist * getCaloData() const
virtual void addTo(FWConfiguration &) const
void showPixelEndcap(bool)
FWBoolParameter m_compressMuon
FWRPZViewGeometry * m_geometryList
void shiftOrigin(TEveVector ¢er)
const std::string & value(unsigned int iIndex=0) const
const fireworks::Context & context()
void showPixelBarrel(bool)
virtual void eventBegin()
void doPreScaleDistortion()
FWBoolParameter * m_showEndcaps
static const float s_distortFInv
void showTrackerBarrel(bool)
FWDoubleParameter m_fishEyeDistortion
ViewerParameterGUI & addParam(const FWParameterBase *)
FWBoolParameter m_showTrackerEndcap
TGCompositeFrame * getTabContainer()
char data[epos_bytes_allocation]
static double caloMaxEta()
FWDoubleParameter m_muonDistortion
FWBoolParameter m_showPixelEndcap
FWDoubleParameter m_caloDistortion
void showTrackerEndcap(bool)
const FWConfiguration * valueForKey(const std::string &iKey) const
volatile std::atomic< bool > shutdown_flag false
FWBoolParameter m_showPixelBarrel
void setFromOrthoCamera(TGLOrthoCamera *, const FWConfiguration &)
virtual void addTo(FWConfiguration &) const
static const float s_distortF
void projectionAxesLabelSize()
virtual void setContext(const fireworks::Context &x)
FWViewType::EType typeId() const