#include "TEveTrack.h"
#include "TEveTrackPropagator.h"
#include "TEvePointSet.h"
#include "TPolyLine3D.h"
#include "TMarker.h"
#include "TPolyMarker3D.h"
#include "TColor.h"
#include "TParticlePDG.h"
#include "TEveManager.h"
#include "TEveBrowser.h"
#include "TEveTrackProjected.h"
#include "Riostream.h"
#include <vector>
#include <algorithm>
#include <functional>
ClassImp(TEveTrack);
TEveTrack::TEveTrack() :
TEveLine(),
fV(),
fP(),
fPEnd(),
fBeta(0),
fPdg(0),
fCharge(0),
fLabel(kMinInt),
fIndex(kMinInt),
fStatus(0),
fLockPoints(kFALSE),
fPathMarks(),
fLastPMIdx(0),
fPropagator(0)
{
}
TEveTrack::TEveTrack(TParticle* t, Int_t label, TEveTrackPropagator* prop):
TEveLine(),
fV(t->Vx(), t->Vy(), t->Vz()),
fP(t->Px(), t->Py(), t->Pz()),
fPEnd(),
fBeta(t->P()/t->Energy()),
fPdg(0),
fCharge(0),
fLabel(label),
fIndex(kMinInt),
fStatus(t->GetStatusCode()),
fLockPoints(kFALSE),
fPathMarks(),
fLastPMIdx(0),
fPropagator(0)
{
SetPropagator(prop);
fMainColorPtr = &fLineColor;
TParticlePDG* pdgp = t->GetPDG();
if (pdgp) {
fPdg = pdgp->PdgCode();
fCharge = (Int_t) TMath::Nint(pdgp->Charge()/3);
}
SetName(t->GetName());
}
TEveTrack::TEveTrack(TEveMCTrack* t, TEveTrackPropagator* prop):
TEveLine(),
fV(t->Vx(), t->Vy(), t->Vz()),
fP(t->Px(), t->Py(), t->Pz()),
fPEnd(),
fBeta(t->P()/t->Energy()),
fPdg(0),
fCharge(0),
fLabel(t->fLabel),
fIndex(t->fIndex),
fStatus(t->GetStatusCode()),
fLockPoints(kFALSE),
fPathMarks(),
fLastPMIdx(0),
fPropagator(0)
{
SetPropagator(prop);
fMainColorPtr = &fLineColor;
TParticlePDG* pdgp = t->GetPDG();
if (pdgp == 0) {
t->ResetPdgCode(); pdgp = t->GetPDG();
}
fCharge = (Int_t) TMath::Nint(pdgp->Charge()/3);
SetName(t->GetName());
}
TEveTrack::TEveTrack(TEveRecTrackD* t, TEveTrackPropagator* prop) :
TEveLine(),
fV(t->fV),
fP(t->fP),
fPEnd(),
fBeta(t->fBeta),
fPdg(0),
fCharge(t->fSign),
fLabel(t->fLabel),
fIndex(t->fIndex),
fStatus(t->fStatus),
fLockPoints(kFALSE),
fPathMarks(),
fLastPMIdx(0),
fPropagator(0)
{
SetPropagator(prop);
fMainColorPtr = &fLineColor;
SetName(t->GetName());
}
TEveTrack::TEveTrack(TEveRecTrack* t, TEveTrackPropagator* prop) :
TEveLine(),
fV(t->fV),
fP(t->fP),
fPEnd(),
fBeta(t->fBeta),
fPdg(0),
fCharge(t->fSign),
fLabel(t->fLabel),
fIndex(t->fIndex),
fStatus(t->fStatus),
fLockPoints(kFALSE),
fPathMarks(),
fLastPMIdx(0),
fPropagator(0)
{
SetPropagator(prop);
fMainColorPtr = &fLineColor;
SetName(t->GetName());
}
TEveTrack::TEveTrack(const TEveTrack& t) :
TEveLine(),
fV(t.fV),
fP(t.fP),
fPEnd(),
fBeta(t.fBeta),
fPdg(t.fPdg),
fCharge(t.fCharge),
fLabel(t.fLabel),
fIndex(t.fIndex),
fStatus(t.fStatus),
fLockPoints(t.fLockPoints),
fPathMarks(),
fLastPMIdx(t.fLastPMIdx),
fPropagator(0)
{
if (fLockPoints)
ClonePoints(t);
SetPathMarks(t);
SetPropagator (t.fPropagator);
CopyVizParams(&t);
}
TEveTrack::~TEveTrack()
{
SetPropagator(0);
}
const TGPicture* TEveTrack::GetListTreeIcon(Bool_t)
{
return fgListTreeIcons[4];
}
void TEveTrack::ComputeBBox()
{
if (Size() > 0 || ! fPathMarks.empty())
{
BBoxInit();
Int_t n = Size();
Float_t* p = TPolyMarker3D::fP;
for (Int_t i = 0; i < n; ++i, p += 3)
{
BBoxCheckPoint(p);
}
for (vPathMark_ci i = fPathMarks.begin(); i != fPathMarks.end(); ++i)
{
BBoxCheckPoint(i->fV.fX, i->fV.fY,i->fV.fZ);
}
}
else
{
BBoxZero();
}
}
void TEveTrack::SetStdTitle()
{
TString idx(fIndex == kMinInt ? "<undef>" : Form("%d", fIndex));
TString lbl(fLabel == kMinInt ? "<undef>" : Form("%d", fLabel));
SetTitle(Form("Index=%s, Label=%s\nChg=%d, Pdg=%d\n"
"pT=%.3f, pZ=%.3f\nV=(%.3f, %.3f, %.3f)",
idx.Data(), lbl.Data(), fCharge, fPdg,
fP.Perp(), fP.fZ, fV.fX, fV.fY, fV.fZ));
}
void TEveTrack::SetTrackParams(const TEveTrack& t)
{
fV = t.fV;
fP = t.fP;
fBeta = t.fBeta;
fPdg = t.fPdg;
fCharge = t.fCharge;
fLabel = t.fLabel;
fIndex = t.fIndex;
fPathMarks.clear();
SetPropagator(t.fPropagator);
}
void TEveTrack::SetPathMarks(const TEveTrack& t)
{
std::copy(t.RefPathMarks().begin(), t.RefPathMarks().end(),
std::back_insert_iterator<vPathMark_t>(fPathMarks));
}
void TEveTrack::SetPropagator(TEveTrackPropagator* prop)
{
if (fPropagator == prop) return;
if (fPropagator) fPropagator->DecRefCount(this);
fPropagator = prop;
if (fPropagator) fPropagator->IncRefCount(this);
}
void TEveTrack::SetAttLineAttMarker(TEveTrackList* tl)
{
SetRnrLine(tl->GetRnrLine());
SetLineColor(tl->GetLineColor());
SetLineStyle(tl->GetLineStyle());
SetLineWidth(tl->GetLineWidth());
SetRnrPoints(tl->GetRnrPoints());
SetMarkerColor(tl->GetMarkerColor());
SetMarkerStyle(tl->GetMarkerStyle());
SetMarkerSize(tl->GetMarkerSize());
}
void TEveTrack::MakeTrack(Bool_t recurse)
{
if (!fLockPoints)
{
Reset(0);
fLastPMIdx = 0;
TEveTrackPropagator& rTP((fPropagator != 0) ? *fPropagator : TEveTrackPropagator::fgDefault);
const Double_t maxRsq = rTP.GetMaxR() * rTP.GetMaxR();
const Double_t maxZ = rTP.GetMaxZ();
if ( ! TEveTrackPropagator::IsOutsideBounds(fV, maxRsq, maxZ))
{
TEveVectorD currP = fP;
Bool_t decay = kFALSE;
fPropagator->InitTrack(fV, fCharge);
for (vPathMark_i pm = fPathMarks.begin(); pm != fPathMarks.end(); ++pm, ++fLastPMIdx)
{
if (rTP.GetFitReferences() && pm->fType == TEvePathMarkD::kReference)
{
if (TEveTrackPropagator::IsOutsideBounds(pm->fV, maxRsq, maxZ))
break;
if (fPropagator->GoToVertex(pm->fV, currP)) {
currP.fX = pm->fP.fX; currP.fY = pm->fP.fY; currP.fZ = pm->fP.fZ;
}
else
{
break;
}
}
else if (rTP.GetFitDaughters() && pm->fType == TEvePathMarkD::kDaughter)
{
if (TEveTrackPropagator::IsOutsideBounds(pm->fV, maxRsq, maxZ))
break;
if (fPropagator->GoToVertex(pm->fV, currP)) {
currP.fX -= pm->fP.fX; currP.fY -= pm->fP.fY; currP.fZ -= pm->fP.fZ;
}
else
{
break;
}
}
else if (rTP.GetFitDecay() && pm->fType == TEvePathMarkD::kDecay)
{
if (TEveTrackPropagator::IsOutsideBounds(pm->fV, maxRsq, maxZ))
break;
fPropagator->GoToVertex(pm->fV, currP);
decay = kTRUE;
++fLastPMIdx;
break;
}
else if (rTP.GetFitCluster2Ds() && pm->fType == TEvePathMarkD::kCluster2D)
{
TEveVectorD itsect;
if (fPropagator->IntersectPlane(currP, pm->fV, pm->fP, itsect))
{
TEveVectorD delta = itsect - pm->fV;
TEveVectorD vtopass = pm->fV + pm->fE*(pm->fE.Dot(delta));
if (TEveTrackPropagator::IsOutsideBounds(vtopass, maxRsq, maxZ))
break;
if ( ! fPropagator->GoToVertex(vtopass, currP))
break;
}
else
{
Warning("TEveTrack::MakeTrack", "Failed to intersect plane for Cluster2D. Ignoring path-mark.");
}
}
else
{
if (TEveTrackPropagator::IsOutsideBounds(pm->fV, maxRsq, maxZ))
break;
}
}
if (!decay)
{
fPropagator->GoToBounds(currP);
}
fPEnd = currP;
fPropagator->FillPointSet(this);
fPropagator->ResetTrack();
}
}
if (recurse)
{
for (List_i i=fChildren.begin(); i!=fChildren.end(); ++i)
{
TEveTrack* t = dynamic_cast<TEveTrack*>(*i);
if (t) t->MakeTrack(recurse);
}
}
}
void TEveTrack::CopyVizParams(const TEveElement* el)
{
TEveLine::CopyVizParams(el);
}
void TEveTrack::WriteVizParams(ostream& out, const TString& var)
{
TEveLine::WriteVizParams(out, var);
}
TClass* TEveTrack::ProjectedClass(const TEveProjection*) const
{
return TEveTrackProjected::Class();
}
namespace
{
struct Cmp_pathmark_t
{
bool operator()(TEvePathMarkD const & a, TEvePathMarkD const & b)
{ return a.fTime < b.fTime; }
};
}
void TEveTrack::SortPathMarksByTime()
{
std::sort(fPathMarks.begin(), fPathMarks.end(), Cmp_pathmark_t());
}
void TEveTrack::PrintPathMarks()
{
static const TEveException eh("TEveTrack::PrintPathMarks ");
printf("TEveTrack '%s', number of path marks %d, label %d\n",
GetName(), (Int_t)fPathMarks.size(), fLabel);
for (vPathMark_i pm = fPathMarks.begin(); pm != fPathMarks.end(); ++pm)
{
printf(" %-9s p: %8f %8f %8f Vertex: %8e %8e %8e %g \n",
pm->TypeName(),
pm->fP.fX, pm->fP.fY, pm->fP.fZ,
pm->fV.fX, pm->fV.fY, pm->fV.fZ,
pm->fTime);
}
}
void TEveTrack::SecSelected(TEveTrack* track)
{
Emit("SecSelected(TEveTrack*)", (Long_t)track);
}
Bool_t TEveTrack::ShouldBreakTrack() const
{
Error("ShouldBreakTrack", "Deprected -- use TEveTrackPropagator functions.");
return fPropagator->GetProjTrackBreaking() == TEveTrackPropagator::kPTB_Break;
}
UChar_t TEveTrack::GetBreakProjectedTracks() const
{
Error("GetBreakProjectedTracks", "Deprected -- use TEveTrackPropagator functions.");
return 0;
}
void TEveTrack::SetBreakProjectedTracks(UChar_t)
{
Error("SetBreakProjectedTracks", "Deprected -- use TEveTrackPropagator functions.");
}
Bool_t TEveTrack::GetDefaultBreakProjectedTracks()
{
::Error("TEveTrack::GetDefaultBreakProjectedTracks", "Deprected -- use TEveTrackPropagator functions.");
return kTRUE;
}
void TEveTrack::SetDefaultBreakProjectedTracks(Bool_t)
{
::Error("TEveTrack::SetDefaultBreakProjectedTracks", "Deprected -- use TEveTrackPropagator functions.");
}
ClassImp(TEveTrackList);
TEveTrackList::TEveTrackList(TEveTrackPropagator* prop) :
TEveElementList(),
TAttMarker(1, 20, 1),
TAttLine(1,1,1),
fPropagator(0),
fRecurse(kTRUE),
fRnrLine(kTRUE),
fRnrPoints(kFALSE),
fMinPt (0), fMaxPt (0), fLimPt (0),
fMinP (0), fMaxP (0), fLimP (0)
{
fChildClass = TEveTrack::Class();
fMainColorPtr = &fLineColor;
if (prop == 0) prop = new TEveTrackPropagator;
SetPropagator(prop);
}
TEveTrackList::TEveTrackList(const char* name, TEveTrackPropagator* prop) :
TEveElementList(name),
TAttMarker(1, 20, 1),
TAttLine(1,1,1),
fPropagator(0),
fRecurse(kTRUE),
fRnrLine(kTRUE),
fRnrPoints(kFALSE),
fMinPt (0), fMaxPt (0), fLimPt (0),
fMinP (0), fMaxP (0), fLimP (0)
{
fChildClass = TEveTrack::Class();
fMainColorPtr = &fLineColor;
if (prop == 0) prop = new TEveTrackPropagator;
SetPropagator(prop);
}
TEveTrackList::~TEveTrackList()
{
SetPropagator(0);
}
void TEveTrackList::SetPropagator(TEveTrackPropagator* prop)
{
if (fPropagator == prop) return;
if (fPropagator) fPropagator->DecRefCount();
fPropagator = prop;
if (fPropagator) prop->IncRefCount();
}
void TEveTrackList::MakeTracks(Bool_t recurse)
{
fLimPt = fLimP = 0;
for (List_i i=fChildren.begin(); i!=fChildren.end(); ++i)
{
TEveTrack* track = dynamic_cast<TEveTrack*>(*i);
if (track)
{
track->MakeTrack(recurse);
fLimPt = TMath::Max(fLimPt, track->fP.Perp());
fLimP = TMath::Max(fLimP, track->fP.Mag());
}
if (recurse)
FindMomentumLimits(*i, recurse);
}
fLimPt = RoundMomentumLimit(fLimPt);
fLimP = RoundMomentumLimit(fLimP);
SanitizeMinMaxCuts();
}
void TEveTrackList::FindMomentumLimits(Bool_t recurse)
{
fLimPt = fLimP = 0;
if (HasChildren())
{
for (List_i i=BeginChildren(); i!=EndChildren(); ++i)
{
TEveTrack* track = dynamic_cast<TEveTrack*>(*i);
if (track)
{
fLimPt = TMath::Max(fLimPt, track->fP.Perp());
fLimP = TMath::Max(fLimP, track->fP.Mag());
}
if (recurse)
FindMomentumLimits(*i, recurse);
}
fLimPt = RoundMomentumLimit(fLimPt);
fLimP = RoundMomentumLimit(fLimP);
}
SanitizeMinMaxCuts();
}
void TEveTrackList::FindMomentumLimits(TEveElement* el, Bool_t recurse)
{
for (List_i i=el->BeginChildren(); i!=el->EndChildren(); ++i)
{
TEveTrack* track = dynamic_cast<TEveTrack*>(*i);
if (track)
{
fLimPt = TMath::Max(fLimPt, track->fP.Perp());
fLimP = TMath::Max(fLimP, track->fP.Mag());
}
if (recurse)
FindMomentumLimits(*i, recurse);
}
}
Double_t TEveTrackList::RoundMomentumLimit(Double_t x)
{
using namespace TMath;
if (x < 1e-3) return 1e-3;
Double_t fac = Power(10, 1 - Floor(Log10(x)));
return Ceil(fac*x) / fac;
}
void TEveTrackList::SanitizeMinMaxCuts()
{
using namespace TMath;
fMinPt = Min(fMinPt, fLimPt);
fMaxPt = fMaxPt == 0 ? fLimPt : Min(fMaxPt, fLimPt);
fMinP = Min(fMinP, fLimP);
fMaxP = fMaxP == 0 ? fLimP : Min(fMaxP, fLimP);
}
void TEveTrackList::SetRnrLine(Bool_t rnr)
{
for (List_i i=BeginChildren(); i!=EndChildren(); ++i)
{
TEveTrack* track = (TEveTrack*)(*i);
if (track->GetRnrLine() == fRnrLine)
track->SetRnrLine(rnr);
if (fRecurse)
SetRnrLine(rnr, *i);
}
fRnrLine = rnr;
}
void TEveTrackList::SetRnrLine(Bool_t rnr, TEveElement* el)
{
TEveTrack* track;
for (List_i i=el->BeginChildren(); i!=el->EndChildren(); ++i)
{
track = dynamic_cast<TEveTrack*>(*i);
if (track && (track->GetRnrLine() == fRnrLine))
track->SetRnrLine(rnr);
if (fRecurse)
SetRnrLine(rnr, *i);
}
}
void TEveTrackList::SetRnrPoints(Bool_t rnr)
{
for (List_i i=BeginChildren(); i!=EndChildren(); ++i)
{
TEveTrack* track = (TEveTrack*)(*i);
if (track->GetRnrPoints() == fRnrPoints)
track->SetRnrPoints(rnr);
if (fRecurse)
SetRnrPoints(rnr, *i);
}
fRnrPoints = rnr;
}
void TEveTrackList::SetRnrPoints(Bool_t rnr, TEveElement* el)
{
TEveTrack* track;
for (List_i i=el->BeginChildren(); i!=el->EndChildren(); ++i)
{
track = dynamic_cast<TEveTrack*>(*i);
if (track)
if (track->GetRnrPoints() == fRnrPoints)
track->SetRnrPoints(rnr);
if (fRecurse)
SetRnrPoints(rnr, *i);
}
}
void TEveTrackList::SetMainColor(Color_t col)
{
for (List_i i=BeginChildren(); i!=EndChildren(); ++i)
{
TEveTrack* track = (TEveTrack*)(*i);
if (track->GetLineColor() == fLineColor)
track->SetLineColor(col);
if (fRecurse)
SetLineColor(col, *i);
}
TEveElement::SetMainColor(col);
}
void TEveTrackList::SetLineColor(Color_t col, TEveElement* el)
{
TEveTrack* track;
for (List_i i=el->BeginChildren(); i!=el->EndChildren(); ++i)
{
track = dynamic_cast<TEveTrack*>(*i);
if (track && track->GetLineColor() == fLineColor)
track->SetLineColor(col);
if (fRecurse)
SetLineColor(col, *i);
}
}
void TEveTrackList::SetLineWidth(Width_t width)
{
for (List_i i=BeginChildren(); i!=EndChildren(); ++i)
{
TEveTrack* track = (TEveTrack*)(*i);
if (track->GetLineWidth() == fLineWidth)
track->SetLineWidth(width);
if (fRecurse)
SetLineWidth(width, *i);
}
fLineWidth = width;
}
void TEveTrackList::SetLineWidth(Width_t width, TEveElement* el)
{
TEveTrack* track;
for (List_i i=el->BeginChildren(); i!=el->EndChildren(); ++i)
{
track = dynamic_cast<TEveTrack*>(*i);
if (track && track->GetLineWidth() == fLineWidth)
track->SetLineWidth(width);
if (fRecurse)
SetLineWidth(width, *i);
}
}
void TEveTrackList::SetLineStyle(Style_t style)
{
for (List_i i=BeginChildren(); i!=EndChildren(); ++i)
{
TEveTrack* track = (TEveTrack*)(*i);
if (track->GetLineStyle() == fLineStyle)
track->SetLineStyle(style);
if (fRecurse)
SetLineStyle(style, *i);
}
fLineStyle = style;
}
void TEveTrackList::SetLineStyle(Style_t style, TEveElement* el)
{
TEveTrack* track;
for (List_i i=el->BeginChildren(); i!=el->EndChildren(); ++i)
{
track = dynamic_cast<TEveTrack*>(*i);
if (track && track->GetLineStyle() == fLineStyle)
track->SetLineStyle(style);
if (fRecurse)
SetLineStyle(style, *i);
}
}
void TEveTrackList::SetMarkerStyle(Style_t style)
{
for (List_i i=BeginChildren(); i!=EndChildren(); ++i)
{
TEveTrack* track = (TEveTrack*)(*i);
if (track->GetMarkerStyle() == fMarkerStyle)
track->SetMarkerStyle(style);
if (fRecurse)
SetMarkerStyle(style, *i);
}
fMarkerStyle = style;
}
void TEveTrackList::SetMarkerStyle(Style_t style, TEveElement* el)
{
TEveTrack* track;
for (List_i i=el->BeginChildren(); i!=el->EndChildren(); ++i)
{
track = dynamic_cast<TEveTrack*>(*i);
if (track && track->GetMarkerStyle() == fMarkerStyle)
track->SetMarkerStyle(style);
if (fRecurse)
SetMarkerStyle(style, *i);
}
}
void TEveTrackList::SetMarkerColor(Color_t col)
{
for (List_i i=BeginChildren(); i!=EndChildren(); ++i)
{
TEveTrack* track = (TEveTrack*)(*i);
if (track->GetMarkerColor() == fMarkerColor)
track->SetMarkerColor(col);
if (fRecurse)
SetMarkerColor(col, *i);
}
fMarkerColor = col;
}
void TEveTrackList::SetMarkerColor(Color_t col, TEveElement* el)
{
TEveTrack* track;
for (List_i i=el->BeginChildren(); i!=el->EndChildren(); ++i)
{
track = dynamic_cast<TEveTrack*>(*i);
if (track && track->GetMarkerColor() == fMarkerColor)
track->SetMarkerColor(col);
if (fRecurse)
SetMarkerColor(col, *i);
}
}
void TEveTrackList::SetMarkerSize(Size_t size)
{
for (List_i i=BeginChildren(); i!=EndChildren(); ++i)
{
TEveTrack* track = (TEveTrack*)(*i);
if (track->GetMarkerSize() == fMarkerSize)
track->SetMarkerSize(size);
if (fRecurse)
SetMarkerSize(size, *i);
}
fMarkerSize = size;
}
void TEveTrackList::SetMarkerSize(Size_t size, TEveElement* el)
{
TEveTrack* track;
for (List_i i=el->BeginChildren(); i!=el->EndChildren(); ++i)
{
track = dynamic_cast<TEveTrack*>(*i);
if (track && track->GetMarkerSize() == fMarkerSize)
track->SetMarkerSize(size);
if (fRecurse)
SetMarkerSize(size, *i);
}
}
void TEveTrackList::SelectByPt(Double_t min_pt, Double_t max_pt)
{
fMinPt = min_pt;
fMaxPt = max_pt;
const Double_t minptsq = min_pt*min_pt;
const Double_t maxptsq = max_pt*max_pt;
for (List_i i=BeginChildren(); i!=EndChildren(); ++i)
{
const Double_t ptsq = ((TEveTrack*)(*i))->fP.Perp2();
Bool_t on = ptsq >= minptsq && ptsq <= maxptsq;
(*i)->SetRnrState(on);
if (on && fRecurse)
SelectByPt(min_pt, max_pt, *i);
}
}
void TEveTrackList::SelectByPt(Double_t min_pt, Double_t max_pt, TEveElement* el)
{
const Double_t minptsq = min_pt*min_pt;
const Double_t maxptsq = max_pt*max_pt;
for (List_i i=el->BeginChildren(); i!=el->EndChildren(); ++i)
{
TEveTrack* track = dynamic_cast<TEveTrack*>(*i);
if (track)
{
const Double_t ptsq = track->fP.Perp2();
Bool_t on = ptsq >= minptsq && ptsq <= maxptsq;
track->SetRnrState(on);
if (on && fRecurse)
SelectByPt(min_pt, max_pt, *i);
}
}
}
void TEveTrackList::SelectByP(Double_t min_p, Double_t max_p)
{
fMinP = min_p;
fMaxP = max_p;
const Double_t minpsq = min_p*min_p;
const Double_t maxpsq = max_p*max_p;
for (List_i i=BeginChildren(); i!=EndChildren(); ++i)
{
const Double_t psq = ((TEveTrack*)(*i))->fP.Mag2();
Bool_t on = psq >= minpsq && psq <= maxpsq;
(*i)->SetRnrState(psq >= minpsq && psq <= maxpsq);
if (on && fRecurse)
SelectByP(min_p, max_p, *i);
}
}
void TEveTrackList::SelectByP(Double_t min_p, Double_t max_p, TEveElement* el)
{
const Double_t minpsq = min_p*min_p;
const Double_t maxpsq = max_p*max_p;
for (List_i i=el->BeginChildren(); i!=el->EndChildren(); ++i)
{
TEveTrack* track = dynamic_cast<TEveTrack*>(*i);
if (track)
{
const Double_t psq = ((TEveTrack*)(*i))->fP.Mag2();
Bool_t on = psq >= minpsq && psq <= maxpsq;
track->SetRnrState(on);
if (on && fRecurse)
SelectByP(min_p, max_p, *i);
}
}
}
TEveTrack* TEveTrackList::FindTrackByLabel(Int_t label)
{
for (List_i i=fChildren.begin(); i!=fChildren.end(); ++i)
{
if (((TEveTrack*)(*i))->GetLabel() == label)
{
TGListTree *lt = gEve->GetLTEFrame()->GetListTree();
TGListTreeItem *mlti = lt->GetSelected();
if (mlti->GetUserData() != this)
mlti = FindListTreeItem(lt);
TGListTreeItem *tlti = (*i)->FindListTreeItem(lt, mlti);
lt->HighlightItem(tlti);
lt->SetSelected(tlti);
gEve->EditElement(*i);
return (TEveTrack*) *i;
}
}
return 0;
}
TEveTrack* TEveTrackList::FindTrackByIndex(Int_t index)
{
for (List_i i=fChildren.begin(); i!=fChildren.end(); ++i)
{
if (((TEveTrack*)(*i))->GetIndex() == index)
{
TGListTree *lt = gEve->GetLTEFrame()->GetListTree();
TGListTreeItem *mlti = lt->GetSelected();
if (mlti->GetUserData() != this)
mlti = FindListTreeItem(lt);
TGListTreeItem *tlti = (*i)->FindListTreeItem(lt, mlti);
lt->HighlightItem(tlti);
lt->SetSelected(tlti);
gEve->EditElement(*i);
return (TEveTrack*) *i;
}
}
return 0;
}
void TEveTrackList::CopyVizParams(const TEveElement* el)
{
const TEveTrackList* m = dynamic_cast<const TEveTrackList*>(el);
if (m)
{
TAttMarker::operator=(*m);
TAttLine::operator=(*m);
fRecurse = m->fRecurse;
fRnrLine = m->fRnrLine;
fRnrPoints = m->fRnrPoints;
fMinPt = m->fMinPt;
fMaxPt = m->fMaxPt;
fLimPt = m->fLimPt;
fMinP = m->fMinP;
fMaxP = m->fMaxP;
fLimP = m->fLimP;
}
TEveElement::CopyVizParams(el);
}
void TEveTrackList::WriteVizParams(ostream& out, const TString& var)
{
TEveElement::WriteVizParams(out, var);
TString t = " " + var + "->";
TAttMarker::SaveMarkerAttributes(out, var);
TAttLine ::SaveLineAttributes (out, var);
out << t << "SetRecurse(" << ToString(fRecurse) << ");\n";
out << t << "SetRnrLine(" << ToString(fRnrLine) << ");\n";
out << t << "SetRnrPoints(" << ToString(fRnrPoints) << ");\n";
}
TClass* TEveTrackList::ProjectedClass(const TEveProjection*) const
{
return TEveTrackListProjected::Class();
}