|
typedef std::vector< Product * >::iterator | Product_it |
|
void | build () |
|
virtual void | build (const FWEventItem *iItem, TEveElementList *product, const FWViewContext *) |
|
void | build (const FWEventItem *iItem, TEveElementList *product, const FWViewContext *) override |
|
virtual void | build (const void *, unsigned int iIndex, TEveElement &iItemHolder, const FWViewContext *)=0 |
|
void | build (const void *iData, unsigned int iIndex, TEveElement &oItemHolder, const FWViewContext *context) override |
|
virtual void | buildViewType (const FWEventItem *iItem, TEveElementList *, FWViewType::EType, const FWViewContext *) |
|
void | buildViewType (const FWEventItem *iItem, TEveElementList *product, FWViewType::EType viewType, const FWViewContext *) override |
|
virtual void | buildViewType (const reco::Vertex &iData, unsigned int iIndex, TEveElement &oItemHolder, FWViewType::EType viewType, const FWViewContext *) |
|
virtual void | buildViewType (const void *, unsigned int iIndex, TEveElement &iItemHolder, FWViewType::EType, const FWViewContext *)=0 |
|
void | buildViewType (const void *iData, unsigned int iIndex, TEveElement &oItemHolder, FWViewType::EType viewType, const FWViewContext *context) override |
|
const reco::Vertex & | modelData (int index) |
|
void | build () |
|
virtual void | build (const FWEventItem *iItem, TEveElementList *product, const FWViewContext *) |
|
void | build (const FWEventItem *iItem, TEveElementList *product, const FWViewContext *) override |
|
virtual void | buildViewType (const FWEventItem *iItem, TEveElementList *, FWViewType::EType, const FWViewContext *) |
|
void | buildViewType (const FWEventItem *iItem, TEveElementList *product, FWViewType::EType viewType, const FWViewContext *) override |
|
void | clean () override |
|
virtual void | cleanLocal () |
|
TEveCompound * | createCompound (bool set_color=true, bool propagate_color_to_all_children=false) const |
|
| FWProxyBuilderBase (const FWProxyBuilderBase &) |
|
void | increaseComponentTransparency (unsigned int index, TEveElement *holder, const std::string &name, Char_t transpOffset) |
|
virtual void | modelChanges (const FWModelIds &, Product *) |
|
const FWProxyBuilderBase & | operator= (const FWProxyBuilderBase &) |
|
virtual void | scaleProduct (TEveElementList *parent, FWViewType::EType, const FWViewContext *vc) |
|
FWSimpleProxyHelper | m_helper |
|
std::vector< Product * > | m_products |
|
Definition at line 40 of file FWVertexProxyBuilder.cc.
void FWVertexProxyBuilder::build |
( |
const reco::Vertex & |
iData, |
|
|
unsigned int |
iIndex, |
|
|
TEveElement & |
oItemHolder, |
|
|
const FWViewContext * |
|
|
) |
| |
|
overrideprivatevirtual |
iIndex is the index where iData is found in the container from which it came iItemHolder is the object to which you add your own objects which inherit from TEveElement
Reimplemented from FWSimpleProxyBuilderTemplate< reco::Vertex >.
Definition at line 73 of file FWVertexProxyBuilder.cc.
80 TEveGeoManagerHolder gmgr(TEveGeoShape::GetGeoMangeur());
81 TEvePointSet* pointSet =
new TEvePointSet();
82 pointSet->SetNextPoint(
v.x(),
v.y(),
v.z());
86 if (
item()->getConfig()->value<bool>(
"Draw Ellipse")) {
89 eveEllipsoid->
RefPos().Set(
v.x(),
v.y(),
v.z());
93 for (
int i = 0;
i < 3;
i++)
94 for (
int j = 0;
j < 3;
j++) {
100 double ellipseScale = 1.;
104 eveEllipsoid->
SetScale(ellipseScale);
107 TMatrixDEigen eig(
m);
108 TVectorD vv(eig.GetEigenValuesRe());
109 eveEllipsoid->
RefExtent3D().Set(
sqrt(vv(0)) * ellipseScale,
sqrt(vv(1)) * ellipseScale,
sqrt(vv(2)) * ellipseScale);
111 eveEllipsoid->SetLineWidth(2);
113 eveEllipsoid->SetMainTransparency(
TMath::Min(100, 80 +
item()->defaultDisplayProperties().transparency() / 5));
118 eveEllipsoid->SetMainColor(color +
context().colorManager()->offsetOfLimitedColors());
122 if (
item()->getConfig()->value<bool>(
"Draw Tracks")) {
124 float w =
v.trackWeight(*it);
134 TEveTrack* trk =
new TEveTrack(&
t,
context().getTrackPropagator());
135 trk->SetMainColor(
item()->defaultDisplayProperties().color());
140 if (
item()->getConfig()->value<bool>(
"Draw Pseudo Track")) {
143 t.fV = TEveVector(
v.x(),
v.y(),
v.z());
144 t.fP = TEveVector(-
v.p4().px(), -
v.p4().py(), -
v.p4().pz());
146 TEveTrack* trk =
new TEveTrack(&
t,
context().getTrackPropagator());
147 trk->SetLineStyle(7);
157 if (cIdx >= 0 &&
int(iIndex) ==
int(cIdx)) {
159 << Form(
"idx [%d], (%f %f %f) \n", cIdx,
v.x(),
v.y(),
v.z());
References fireworks::Context::commonPrefs(), FWProxyBuilderBase::context(), MillePedeFileConverter_cfg::e, fwLog, FWEventItem::getConfig(), fireworks::Context::getInstance(), mps_fire::i, FWProxyBuilderBase::item(), dqmiolumiharvest::j, fwlog::kInfo, visualization-live-secondInstance_cfg::m, Min(), TEveEllipsoid::RefEMtx(), TEveEllipsoid::RefExtent3D(), TEveEllipsoid::RefPos(), CmsShowCommon::resetEventCenter(), CmsShowCommon::setEventCenter(), TEveEllipsoid::SetScale(), FWProxyBuilderBase::setupAddElement(), mathSSE::sqrt(), OrderedSet::t, HLT_2018_cff::track, findQualityFiles::v, FWProxyBuilderConfiguration::value(), and w.