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),
62 m_showRpcEndcap(this,
"Show RPC Endcap",
false ),
63 m_showGEM(this,
"Show GEM",
false ),
64 m_showME0(this,
"Show ME0",
false ),
66 m_shiftOrigin(this,
"Shift origin to beam-spot",
false),
67 m_fishEyeDistortion(this,
"Distortion",0., 0., 100.),
68 m_fishEyeR(this,
"FixedRadius",(double)fireworks::
Context::
caloR1(), 0.0, 150.0),
70 m_caloDistortion(this,
"Calo compression",1.0,0.01,10.),
71 m_muonDistortion(this,
"Muon compression",0.2,0.01,10.),
72 m_showProjectionAxes(this,
"Show projection axis",
false),
73 m_projectionAxesLabelSize(this,
"Projection axis label size", 0.015, 0.001, 0.2),
74 m_compressMuon(this,
"Compress detectors",
false),
78 TEveProjection::EPType_e projType = (
id ==
FWViewType::kRhoZ) ? TEveProjection::kPT_RhoZ : TEveProjection::kPT_RPhi;
80 m_projMgr =
new TEveProjectionManager(projType);
87 #ifdef TEVEPROJECTIONS_DISPLACE_ORIGIN_MODE
93 m_projMgr->GetProjection()->AddPreScaleEntry(0, 300, 0.2);
96 m_projMgr->GetProjection()->AddPreScaleEntry(1, 310, 1.0);
97 m_projMgr->GetProjection()->AddPreScaleEntry(0, 370, 0.2);
98 m_projMgr->GetProjection()->AddPreScaleEntry(1, 580, 0.2);
103 viewerGL()->SetCurrentCamera(TGLViewer::kCameraOrthoXOY);
104 if ( TGLOrthoCamera* camera = dynamic_cast<TGLOrthoCamera*>( &(
viewerGL()->CurrentCamera()) ) ) {
105 camera->SetZoomMax(1e6);
107 geoScene()->GetGLScene()->SetSelectable(kFALSE);
147 return static_cast<TEveCaloViz*
>(
m_calo);
163 TEveCalo3D* calo3d =
new TEveCalo3D(data);
168 m_calo->SetBarrelRadius(177);
173 m_calo->SetAutoRange(
false);
174 m_calo->SetScaleAbs(
true);
195 TEveVector center(b.
x0(), b.
y0(), b.
z0());
196 m_projMgr->GetProjection()->SetCenter(center);
199 TGLCamera& cam =
viewerGL()->CurrentCamera();
200 cam.SetExternalCenter(
true);
203 double r = TMath::Sqrt( b.
x0()*b.
x0() + b.
y0()*b.
y0());
208 cam.SetCenterVec(b.
x0(), b.
y0(), b.
z0());
216 #ifdef TEVEPROJECTIONS_DISPLACE_ORIGIN_MODE
218 TEveProjection*
p =
m_projMgr->GetProjection();
231 #ifdef TEVEPROJECTIONS_DISPLACE_ORIGIN_MODE
233 m_projMgr->GetProjection()->SetCenter(center);
237 float* pc =
m_projMgr->GetProjection()->GetProjectedCenter();
238 viewerGL()->CurrentCamera().SetExternalCenter(
true);
239 viewerGL()->CurrentCamera().SetCenterVec(pc[0], pc[1], pc[2]);
240 viewerGL()->SetDrawCameraCenter(
true);
251 #ifdef TEVEPROJECTIONS_DISPLACE_ORIGIN_MODE
253 TEveVector center(b.
x0(), b.
y0(), b.
z0());
254 m_projMgr->GetProjection()->SetCenter(center);
265 TEveProjection*
p =
m_projMgr->GetProjection();
295 m_projMgr->GetProjection()->SetUsePreScale(flag);
304 float oldLayer =
m_projMgr->GetCurrentDepth();
307 boost::shared_ptr<TEveProjectionManager> sentry(
m_projMgr,
308 boost::bind(&TEveProjectionManager::SetCurrentDepth,
310 m_projMgr->ImportElements(iChildren,iProjectedParent);
318 TGLOrthoCamera* camera =
dynamic_cast<TGLOrthoCamera*
>( &(
viewerGL()->CurrentCamera()) );
327 TGLOrthoCamera* camera =
dynamic_cast<TGLOrthoCamera*
>( &(
viewerGL()->CurrentCamera()) );
347 m_calo->SetEta(-eta_range,eta_range);
356 if (!
m_calo->GetData()->Empty())
358 m_calo->AssertCellIdCache();
360 TEveCaloData::CellData_t cellData;
361 typedef std::vector<TEveCaloData::vCellId_t*> vBinCells_t;
362 typedef std::vector<TEveCaloData::vCellId_t*>::iterator vBinCells_i;
364 vBinCells_t cellLists =
m_calo->fCellLists;
365 for (vBinCells_i it = cellLists.begin(); it != cellLists.end(); it++)
367 TEveCaloData::vCellId_t* binCells = *it;
370 TEveCaloData::vCellId_i
a = binCells->end();
372 for (TEveCaloData::vCellId_i
k = binCells->begin();
k !=
a; ++
k)
374 m_calo->GetData()->GetCellData((*
k), cellData);
375 sumEt += cellData.Value(
true);
376 sumE += cellData.Value(
false);
417 #ifdef TEVEPROJECTIONS_DISPLACE_ORIGIN_MODE
428 f->AddFrame(
new TGLabel(f,
"FishEye:"));
433 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 &)
FWBoolParameter m_showME0
FWDoubleParameter m_projectionAxesLabelSize
virtual void populateController(ViewerParameterGUI &) const
const FWGeometry * getGeom() 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
const fireworks::Context * m_context
const VersionInfo & versionInfo() const
FWBoolParameter * m_showHF
TEveProjectionManager * m_projMgr
FWDoubleParameter m_fishEyeR
FWBoolParameter m_showRpcEndcap
void initStdGeoElements(const FWViewType::EType id)
bool haveExtraDet(const char *) const
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
FWBoolParameter m_showGEM
static const float s_distortFInv
void showTrackerBarrel(bool)
FWDoubleParameter m_fishEyeDistortion
ViewerParameterGUI & addParam(const FWParameterBase *)
FWBoolParameter m_showTrackerEndcap
TGCompositeFrame * getTabContainer()
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