Logo ROOT  
Reference Guide
TSpider Class Reference

Spider class.

A spider view is a handy way to visualize a set of data stored in a TTree. It draws as many polar axes as selected data members. For each of them, it draws on the axis the position of the present event between the min and max of the data member. Two modes are available:

  • The spider view: With each points on the axes is drawn a polyline.
  • The segment view: For each data member is drawn an arc segment with the radius corresponding to the event.

The spider plot is available from the treeviewer called by "atree->StartViewer()", or simply by calling its constructor and defining the variables to display.

{
TCanvas *c1 = new TCanvas("c1","TSpider example",200,10,700,700);
TFile *f = new TFile("$(ROOTSYS)/tutorials/hsimple.root");
if (!f || f->IsZombie()) {
printf("Please run <ROOT location>/tutorials/hsimple.C before.");
return;
}
TNtuple* ntuple = (TNtuple*)f->Get("ntuple");
TString varexp = "px:py:pz:random:sin(px):log(px/py):log(pz)";
TString selectStr = "px>0 && py>0 && pz>0";
TString options = "average";
TSpider *spider = new TSpider(ntuple,varexp.Data(),selectStr.Data(),options.Data());
spider->Draw();
c1->ToggleEditor();
c1->Selected(c1,spider,1);
return c1;
}
#define f(i)
Definition: RSha256.hxx:104
The Canvas class.
Definition: TCanvas.h:31
A ROOT file is a suite of consecutive data records (TKey instances) with a well defined format.
Definition: TFile.h:48
A simple TTree restricted to a list of float variables only.
Definition: TNtuple.h:28
Spider class.
Definition: TSpider.h:40
TSpider()
Default constructor.
Definition: TSpider.cxx:75
virtual void Draw(Option_t *options="")
Draw the spider.
Definition: TSpider.cxx:453
Basic string class.
Definition: TString.h:131
const char * Data() const
Definition: TString.h:364
return c1
Definition: legend1.C:41

Definition at line 40 of file TSpider.h.

Public Member Functions

 TSpider ()
 Default constructor. More...
 
 TSpider (TTree *tree, const char *varexp, const char *selection, Option_t *option="", Long64_t nentries=0, Long64_t firstentry=0)
 Normal constructor. More...
 
 ~TSpider ()
 Destructor. More...
 
void AddSuperposed (TSpider *sp)
 Allow to superpose several spider views. More...
 
void AddVariable (const char *varexp)
 Add a variable to the plot from its expression. More...
 
void DeleteVariable (const char *varexp)
 Delete a variable from its expression. More...
 
virtual Int_t DistancetoPrimitive (Int_t px, Int_t py)
 Compute the distance to the spider. More...
 
virtual void Draw (Option_t *options="")
 Draw the spider. More...
 
virtual void ExecuteEvent (Int_t event, Int_t px, Int_t py)
 Execute the corresponding event. More...
 
Color_t GetAverageFillColor () const
 Get the Fill Color of the average. More...
 
Style_t GetAverageFillStyle () const
 Get the FillStyle of the average. More...
 
Color_t GetAverageLineColor () const
 Get the LineColor of the average. More...
 
Style_t GetAverageLineStyle () const
 Get the LineStyle of the average. More...
 
Width_t GetAverageLineWidth () const
 Get the LineWidth of the average. More...
 
Long64_t GetCurrentEntry () const
 
Bool_t GetDisplayAverage () const
 
Long64_t GetEntriesToProcess (Long64_t firstentry, Long64_t nentries) const
 return the number of entries to be processed this function checks that nentries is not bigger than the number of entries in the Tree or in the associated TEventlist More...
 
Int_t GetNx () const
 
Int_t GetNy () const
 
Bool_t GetSegmentDisplay () const
 
void GotoEntry (Long64_t e)
 Go to a specified entry. More...
 
void GotoFollowing ()
 Go to the next entry. More...
 
void GotoNext ()
 Go to the next entries. More...
 
void GotoPreceding ()
 Go to the last entry. More...
 
void GotoPrevious ()
 Go to the previous entries. More...
 
virtual void Paint (Option_t *options)
 Paint the spider. More...
 
void SetAverageFillColor (Color_t col)
 Set the Fill Color of the average. More...
 
void SetAverageFillStyle (Style_t sty)
 Set the FillStyle of the average. More...
 
void SetAverageLineColor (Color_t col)
 Set the LineColor of the average. More...
 
void SetAverageLineStyle (Style_t sty)
 Set the LineStyle of the average. More...
 
void SetAverageLineWidth (Width_t wid)
 Set the LineWidth of the average. More...
 
void SetDisplayAverage (Bool_t disp)
 Display or not the average. More...
 
virtual void SetFillColor (Color_t col)
 Set fill color. More...
 
virtual void SetFillStyle (Style_t sty)
 Set fill style. More...
 
virtual void SetLineColor (Color_t col)
 Set lin color. More...
 
virtual void SetLineStyle (Style_t sty)
 Set line style. More...
 
virtual void SetLineWidth (Width_t wid)
 Set line width. More...
 
void SetNdivRadial (Int_t div)
 Set number of radial divisions. More...
 
void SetNx (UInt_t nx)
 Set the X number of sub pads. More...
 
void SetNy (UInt_t ny)
 Set the Y number of sub pads. More...
 
void SetSegmentDisplay (Bool_t seg)
 Set the segment display or not. More...
 
void SetSelectionExpression (const char *selexp)
 Compile selection expression if there is one. More...
 
void SetShowRange (Bool_t showrange)
 
void SetVariablesExpression (const char *varexp)
 Compile the variables expression from the given string varexp. More...
 
void SuperposeTo (TSpider *sp)
 
- Public Member Functions inherited from TObject
 TObject ()
 TObject constructor. More...
 
 TObject (const TObject &object)
 TObject copy ctor. More...
 
virtual ~TObject ()
 TObject destructor. More...
 
void AbstractMethod (const char *method) const
 Use this method to implement an "abstract" method that you don't want to leave purely abstract. More...
 
virtual void AppendPad (Option_t *option="")
 Append graphics object to current pad. More...
 
virtual void Browse (TBrowser *b)
 Browse object. May be overridden for another default action. More...
 
ULong_t CheckedHash ()
 Check and record whether this class has a consistent Hash/RecursiveRemove setup (*) and then return the regular Hash value for this object. More...
 
virtual const char * ClassName () const
 Returns name of class to which the object belongs. More...
 
virtual void Clear (Option_t *="")
 
virtual TObjectClone (const char *newname="") const
 Make a clone of an object using the Streamer facility. More...
 
virtual Int_t Compare (const TObject *obj) const
 Compare abstract method. More...
 
virtual void Copy (TObject &object) const
 Copy this to obj. More...
 
virtual void Delete (Option_t *option="")
 Delete this object. More...
 
virtual Int_t DistancetoPrimitive (Int_t px, Int_t py)
 Computes distance from point (px,py) to the object. More...
 
virtual void Draw (Option_t *option="")
 Default Draw method for all objects. More...
 
virtual void DrawClass () const
 Draw class inheritance tree of the class to which this object belongs. More...
 
virtual TObjectDrawClone (Option_t *option="") const
 Draw a clone of this object in the current selected pad for instance with: gROOT->SetSelectedPad(gPad). More...
 
virtual void Dump () const
 Dump contents of object on stdout. More...
 
virtual void Error (const char *method, const char *msgfmt,...) const
 Issue error message. More...
 
virtual void Execute (const char *method, const char *params, Int_t *error=0)
 Execute method on this object with the given parameter string, e.g. More...
 
virtual void Execute (TMethod *method, TObjArray *params, Int_t *error=0)
 Execute method on this object with parameters stored in the TObjArray. More...
 
virtual void ExecuteEvent (Int_t event, Int_t px, Int_t py)
 Execute action corresponding to an event at (px,py). More...
 
virtual void Fatal (const char *method, const char *msgfmt,...) const
 Issue fatal error message. More...
 
virtual TObjectFindObject (const char *name) const
 Must be redefined in derived classes. More...
 
virtual TObjectFindObject (const TObject *obj) const
 Must be redefined in derived classes. More...
 
virtual Option_tGetDrawOption () const
 Get option used by the graphics system to draw this object. More...
 
virtual const char * GetIconName () const
 Returns mime type name of object. More...
 
virtual const char * GetName () const
 Returns name of object. More...
 
virtual char * GetObjectInfo (Int_t px, Int_t py) const
 Returns string containing info about the object at position (px,py). More...
 
virtual Option_tGetOption () const
 
virtual const char * GetTitle () const
 Returns title of object. More...
 
virtual UInt_t GetUniqueID () const
 Return the unique object id. More...
 
virtual Bool_t HandleTimer (TTimer *timer)
 Execute action in response of a timer timing out. More...
 
virtual ULong_t Hash () const
 Return hash value for this object. More...
 
Bool_t HasInconsistentHash () const
 Return true is the type of this object is known to have an inconsistent setup for Hash and RecursiveRemove (i.e. More...
 
virtual void Info (const char *method, const char *msgfmt,...) const
 Issue info message. More...
 
virtual Bool_t InheritsFrom (const char *classname) const
 Returns kTRUE if object inherits from class "classname". More...
 
virtual Bool_t InheritsFrom (const TClass *cl) const
 Returns kTRUE if object inherits from TClass cl. More...
 
virtual void Inspect () const
 Dump contents of this object in a graphics canvas. More...
 
void InvertBit (UInt_t f)
 
virtual Bool_t IsEqual (const TObject *obj) const
 Default equal comparison (objects are equal if they have the same address in memory). More...
 
virtual Bool_t IsFolder () const
 Returns kTRUE in case object contains browsable objects (like containers or lists of other objects). More...
 
R__ALWAYS_INLINE Bool_t IsOnHeap () const
 
virtual Bool_t IsSortable () const
 
R__ALWAYS_INLINE Bool_t IsZombie () const
 
virtual void ls (Option_t *option="") const
 The ls function lists the contents of a class on stdout. More...
 
void MayNotUse (const char *method) const
 Use this method to signal that a method (defined in a base class) may not be called in a derived class (in principle against good design since a child class should not provide less functionality than its parent, however, sometimes it is necessary). More...
 
virtual Bool_t Notify ()
 This method must be overridden to handle object notification. More...
 
void Obsolete (const char *method, const char *asOfVers, const char *removedFromVers) const
 Use this method to declare a method obsolete. More...
 
void operator delete (void *ptr)
 Operator delete. More...
 
void operator delete[] (void *ptr)
 Operator delete []. More...
 
voidoperator new (size_t sz)
 
voidoperator new (size_t sz, void *vp)
 
voidoperator new[] (size_t sz)
 
voidoperator new[] (size_t sz, void *vp)
 
TObjectoperator= (const TObject &rhs)
 TObject assignment operator. More...
 
virtual void Paint (Option_t *option="")
 This method must be overridden if a class wants to paint itself. More...
 
virtual void Pop ()
 Pop on object drawn in a pad to the top of the display list. More...
 
virtual void Print (Option_t *option="") const
 This method must be overridden when a class wants to print itself. More...
 
virtual Int_t Read (const char *name)
 Read contents of object with specified name from the current directory. More...
 
virtual void RecursiveRemove (TObject *obj)
 Recursively remove this object from a list. More...
 
void ResetBit (UInt_t f)
 
virtual void SaveAs (const char *filename="", Option_t *option="") const
 Save this object in the file specified by filename. More...
 
virtual void SavePrimitive (std::ostream &out, Option_t *option="")
 Save a primitive as a C++ statement(s) on output stream "out". More...
 
void SetBit (UInt_t f)
 
void SetBit (UInt_t f, Bool_t set)
 Set or unset the user status bits as specified in f. More...
 
virtual void SetDrawOption (Option_t *option="")
 Set drawing option for object. More...
 
virtual void SetUniqueID (UInt_t uid)
 Set the unique object id. More...
 
virtual void SysError (const char *method, const char *msgfmt,...) const
 Issue system error message. More...
 
R__ALWAYS_INLINE Bool_t TestBit (UInt_t f) const
 
Int_t TestBits (UInt_t f) const
 
virtual void UseCurrentStyle ()
 Set current style settings in this object This function is called when either TCanvas::UseCurrentStyle or TROOT::ForceStyle have been invoked. More...
 
virtual void Warning (const char *method, const char *msgfmt,...) const
 Issue warning message. More...
 
virtual Int_t Write (const char *name=0, Int_t option=0, Int_t bufsize=0)
 Write this object to the current directory. More...
 
virtual Int_t Write (const char *name=0, Int_t option=0, Int_t bufsize=0) const
 Write this object to the current directory. More...
 
- Public Member Functions inherited from TAttFill
 TAttFill ()
 AttFill default constructor. More...
 
 TAttFill (Color_t fcolor, Style_t fstyle)
 AttFill normal constructor. More...
 
virtual ~TAttFill ()
 AttFill destructor. More...
 
void Copy (TAttFill &attfill) const
 Copy this fill attributes to a new TAttFill. More...
 
virtual Color_t GetFillColor () const
 Return the fill area color. More...
 
virtual Style_t GetFillStyle () const
 Return the fill area style. More...
 
virtual Bool_t IsTransparent () const
 
virtual void Modify ()
 Change current fill area attributes if necessary. More...
 
virtual void ResetAttFill (Option_t *option="")
 Reset this fill attributes to default values. More...
 
virtual void SaveFillAttributes (std::ostream &out, const char *name, Int_t coldef=1, Int_t stydef=1001)
 Save fill attributes as C++ statement(s) on output stream out. More...
 
virtual void SetFillAttributes ()
 Invoke the DialogCanvas Fill attributes. More...
 
virtual void SetFillColor (Color_t fcolor)
 Set the fill area color. More...
 
virtual void SetFillColorAlpha (Color_t fcolor, Float_t falpha)
 Set a transparent fill color. More...
 
virtual void SetFillStyle (Style_t fstyle)
 Set the fill area style. More...
 
- Public Member Functions inherited from TAttLine
 TAttLine ()
 AttLine default constructor. More...
 
 TAttLine (Color_t lcolor, Style_t lstyle, Width_t lwidth)
 AttLine normal constructor. More...
 
virtual ~TAttLine ()
 AttLine destructor. More...
 
void Copy (TAttLine &attline) const
 Copy this line attributes to a new TAttLine. More...
 
Int_t DistancetoLine (Int_t px, Int_t py, Double_t xp1, Double_t yp1, Double_t xp2, Double_t yp2)
 Compute distance from point px,py to a line. More...
 
virtual Color_t GetLineColor () const
 Return the line color. More...
 
virtual Style_t GetLineStyle () const
 Return the line style. More...
 
virtual Width_t GetLineWidth () const
 Return the line width. More...
 
virtual void Modify ()
 Change current line attributes if necessary. More...
 
virtual void ResetAttLine (Option_t *option="")
 Reset this line attributes to default values. More...
 
virtual void SaveLineAttributes (std::ostream &out, const char *name, Int_t coldef=1, Int_t stydef=1, Int_t widdef=1)
 Save line attributes as C++ statement(s) on output stream out. More...
 
virtual void SetLineAttributes ()
 Invoke the DialogCanvas Line attributes. More...
 
virtual void SetLineColor (Color_t lcolor)
 Set the line color. More...
 
virtual void SetLineColorAlpha (Color_t lcolor, Float_t lalpha)
 Set a transparent line color. More...
 
virtual void SetLineStyle (Style_t lstyle)
 Set the line style. More...
 
virtual void SetLineWidth (Width_t lwidth)
 Set the line width. More...
 

Private Member Functions

void DrawPoly (Option_t *options)
 Paint the polygon representing the current entry. More...
 
void DrawPolyAverage (Option_t *options)
 Paint the Polygon representing the average value of the variables. More...
 
void DrawSlices (Option_t *options)
 Draw the slices of the segment plot. More...
 
void DrawSlicesAverage (Option_t *options)
 Draw the slices representing the average for the segment plot. More...
 
Int_t FindTextAlign (Double_t theta)
 Find the alignement rule to apply for TText::SetTextAlign(Short_t). More...
 
Double_t FindTextAngle (Double_t theta)
 Determine the orientation of the polar labels according to their angle. More...
 
void InitArrays (Int_t newsize)
 Check if the arrays size is enough and reallocate them if not. More...
 
void InitVariables (Long64_t firstentry, Long64_t nentries)
 Browse the tree to set the min, max and average value of each variable of fVar. More...
 
void SetCurrentEntries ()
 Set the current selected entries. More...
 
void SyncFormulas ()
 Create a TreeFormulaManager to coordinate the formulas. More...
 
void UpdateView ()
 Update the polylines or the arcs for the current entries. More...
 

Private Attributes

Bool_t fAngularLabels
 Selector. More...
 
Int_t fArraySize
 
Double_tfAve
 [fNx*fNy] current selected entries; More...
 
TPolyLinefAveragePoly
 
TArc ** fAverageSlices
 
TCanvasfCanvas
 Average slices. More...
 
Long64_tfCurrentEntries
 
Bool_t fDisplayAverage
 
Long64_t fEntry
 
Long64_t fFirstEntry
 
Bool_t fForceDim
 
TListfFormulas
 Pointer to the mother pad. More...
 
TListfInput
 
TTreeFormulaManagerfManager
 
Double_tfMax
 
Double_tfMin
 
UInt_t fNcols
 
Long64_t fNentries
 
UInt_t fNx
 
UInt_t fNy
 
TGraphPolargramfPolargram
 
TListfPolyList
 
Bool_t fSegmentDisplay
 
TTreeFormulafSelect
 
TSelectorDrawfSelector
 
Bool_t fShowRange
 
TListfSuperposed
 
TTreefTree
 

Additional Inherited Members

- Public Types inherited from TObject
enum  {
  kIsOnHeap = 0x01000000 , kNotDeleted = 0x02000000 , kZombie = 0x04000000 , kInconsistent = 0x08000000 ,
  kBitMask = 0x00ffffff
}
 
enum  { kSingleKey = BIT(0) , kOverwrite = BIT(1) , kWriteDelete = BIT(2) }
 
enum  EDeprecatedStatusBits { kObjInCanvas = BIT(3) }
 
enum  EStatusBits {
  kCanDelete = BIT(0) , kMustCleanup = BIT(3) , kIsReferenced = BIT(4) , kHasUUID = BIT(5) ,
  kCannotPick = BIT(6) , kNoContextMenu = BIT(8) , kInvalidObject = BIT(13)
}
 
- Static Public Member Functions inherited from TObject
static Long_t GetDtorOnly ()
 Return destructor only flag. More...
 
static Bool_t GetObjectStat ()
 Get status of object stat flag. More...
 
static void SetDtorOnly (void *obj)
 Set destructor only flag. More...
 
static void SetObjectStat (Bool_t stat)
 Turn on/off tracking of objects in the TObjectTable. More...
 
- Protected Member Functions inherited from TObject
virtual void DoError (int level, const char *location, const char *fmt, va_list va) const
 Interface to ErrorHandler (protected). More...
 
void MakeZombie ()
 
- Protected Attributes inherited from TAttFill
Color_t fFillColor
 Fill area color. More...
 
Style_t fFillStyle
 Fill area style. More...
 
- Protected Attributes inherited from TAttLine
Color_t fLineColor
 Line color. More...
 
Style_t fLineStyle
 Line style. More...
 
Width_t fLineWidth
 Line width. More...
 

#include <TSpider.h>

Inheritance diagram for TSpider:
[legend]

Constructor & Destructor Documentation

◆ TSpider() [1/2]

TSpider::TSpider ( )

Default constructor.

Definition at line 75 of file TSpider.cxx.

◆ TSpider() [2/2]

TSpider::TSpider ( TTree tree,
const char *  varexp,
const char *  selection,
Option_t option = "",
Long64_t  nentries = 0,
Long64_t  firstentry = 0 
)

Normal constructor.

Options are:

  • "average"
  • "showrange"
  • "segment"

Definition at line 113 of file TSpider.cxx.

◆ ~TSpider()

TSpider::~TSpider ( )

Destructor.

Definition at line 173 of file TSpider.cxx.

Member Function Documentation

◆ AddSuperposed()

void TSpider::AddSuperposed ( TSpider sp)

Allow to superpose several spider views.

Definition at line 205 of file TSpider.cxx.

◆ AddVariable()

void TSpider::AddVariable ( const char *  varexp)

Add a variable to the plot from its expression.

Definition at line 214 of file TSpider.cxx.

◆ DeleteVariable()

void TSpider::DeleteVariable ( const char *  varexp)

Delete a variable from its expression.

Definition at line 352 of file TSpider.cxx.

◆ DistancetoPrimitive()

Int_t TSpider::DistancetoPrimitive ( Int_t  px,
Int_t  py 
)
virtual

Compute the distance to the spider.

Reimplemented from TObject.

Definition at line 438 of file TSpider.cxx.

◆ Draw()

void TSpider::Draw ( Option_t options = "")
virtual

Draw the spider.

Reimplemented from TObject.

Definition at line 453 of file TSpider.cxx.

◆ DrawPoly()

void TSpider::DrawPoly ( Option_t options)
private

Paint the polygon representing the current entry.

Definition at line 529 of file TSpider.cxx.

◆ DrawPolyAverage()

void TSpider::DrawPolyAverage ( Option_t options)
private

Paint the Polygon representing the average value of the variables.

Definition at line 491 of file TSpider.cxx.

◆ DrawSlices()

void TSpider::DrawSlices ( Option_t options)
private

Draw the slices of the segment plot.

Definition at line 559 of file TSpider.cxx.

◆ DrawSlicesAverage()

void TSpider::DrawSlicesAverage ( Option_t options)
private

Draw the slices representing the average for the segment plot.

Definition at line 585 of file TSpider.cxx.

◆ ExecuteEvent()

void TSpider::ExecuteEvent ( Int_t  event,
Int_t  px,
Int_t  py 
)
virtual

Execute the corresponding event.

Reimplemented from TObject.

Definition at line 666 of file TSpider.cxx.

◆ FindTextAlign()

Int_t TSpider::FindTextAlign ( Double_t  theta)
private

Find the alignement rule to apply for TText::SetTextAlign(Short_t).

Definition at line 675 of file TSpider.cxx.

◆ FindTextAngle()

Double_t TSpider::FindTextAngle ( Double_t  theta)
private

Determine the orientation of the polar labels according to their angle.

Definition at line 704 of file TSpider.cxx.

◆ GetAverageFillColor()

Color_t TSpider::GetAverageFillColor ( ) const

Get the Fill Color of the average.

Definition at line 646 of file TSpider.cxx.

◆ GetAverageFillStyle()

Style_t TSpider::GetAverageFillStyle ( ) const

Get the FillStyle of the average.

Definition at line 656 of file TSpider.cxx.

◆ GetAverageLineColor()

Color_t TSpider::GetAverageLineColor ( ) const

Get the LineColor of the average.

Definition at line 626 of file TSpider.cxx.

◆ GetAverageLineStyle()

Style_t TSpider::GetAverageLineStyle ( ) const

Get the LineStyle of the average.

Definition at line 616 of file TSpider.cxx.

◆ GetAverageLineWidth()

Width_t TSpider::GetAverageLineWidth ( ) const

Get the LineWidth of the average.

Definition at line 636 of file TSpider.cxx.

◆ GetCurrentEntry()

Long64_t TSpider::GetCurrentEntry ( ) const
inline

Definition at line 100 of file TSpider.h.

◆ GetDisplayAverage()

Bool_t TSpider::GetDisplayAverage ( ) const
inline

Definition at line 99 of file TSpider.h.

◆ GetEntriesToProcess()

Long64_t TSpider::GetEntriesToProcess ( Long64_t  firstentry,
Long64_t  nentries 
) const

return the number of entries to be processed this function checks that nentries is not bigger than the number of entries in the Tree or in the associated TEventlist

Definition at line 726 of file TSpider.cxx.

◆ GetNx()

Int_t TSpider::GetNx ( void  ) const
inline

Definition at line 102 of file TSpider.h.

◆ GetNy()

Int_t TSpider::GetNy ( void  ) const
inline

Definition at line 103 of file TSpider.h.

◆ GetSegmentDisplay()

Bool_t TSpider::GetSegmentDisplay ( ) const
inline

Definition at line 104 of file TSpider.h.

◆ GotoEntry()

void TSpider::GotoEntry ( Long64_t  e)

Go to a specified entry.

Definition at line 743 of file TSpider.cxx.

◆ GotoFollowing()

void TSpider::GotoFollowing ( )

Go to the next entry.

Definition at line 773 of file TSpider.cxx.

◆ GotoNext()

void TSpider::GotoNext ( )

Go to the next entries.

Definition at line 753 of file TSpider.cxx.

◆ GotoPreceding()

void TSpider::GotoPreceding ( )

Go to the last entry.

Definition at line 783 of file TSpider.cxx.

◆ GotoPrevious()

void TSpider::GotoPrevious ( )

Go to the previous entries.

Definition at line 763 of file TSpider.cxx.

◆ InitArrays()

void TSpider::InitArrays ( Int_t  newsize)
private

Check if the arrays size is enough and reallocate them if not.

Definition at line 793 of file TSpider.cxx.

◆ InitVariables()

void TSpider::InitVariables ( Long64_t  firstentry,
Long64_t  nentries 
)
private

Browse the tree to set the min, max and average value of each variable of fVar.

Definition at line 831 of file TSpider.cxx.

◆ Paint()

void TSpider::Paint ( Option_t options)
virtual

Paint the spider.

Reimplemented from TObject.

Definition at line 917 of file TSpider.cxx.

◆ SetAverageFillColor()

void TSpider::SetAverageFillColor ( Color_t  col)

Set the Fill Color of the average.

Definition at line 1000 of file TSpider.cxx.

◆ SetAverageFillStyle()

void TSpider::SetAverageFillStyle ( Style_t  sty)

Set the FillStyle of the average.

Definition at line 1012 of file TSpider.cxx.

◆ SetAverageLineColor()

void TSpider::SetAverageLineColor ( Color_t  col)

Set the LineColor of the average.

Definition at line 976 of file TSpider.cxx.

◆ SetAverageLineStyle()

void TSpider::SetAverageLineStyle ( Style_t  sty)

Set the LineStyle of the average.

Definition at line 964 of file TSpider.cxx.

◆ SetAverageLineWidth()

void TSpider::SetAverageLineWidth ( Width_t  wid)

Set the LineWidth of the average.

Definition at line 988 of file TSpider.cxx.

◆ SetCurrentEntries()

void TSpider::SetCurrentEntries ( )
private

Set the current selected entries.

Definition at line 1066 of file TSpider.cxx.

◆ SetDisplayAverage()

void TSpider::SetDisplayAverage ( Bool_t  disp)

Display or not the average.

Definition at line 1024 of file TSpider.cxx.

◆ SetFillColor()

void TSpider::SetFillColor ( Color_t  col)
virtual

Set fill color.

Reimplemented from TAttFill.

Definition at line 1184 of file TSpider.cxx.

◆ SetFillStyle()

void TSpider::SetFillStyle ( Style_t  sty)
virtual

Set fill style.

Reimplemented from TAttFill.

Definition at line 1200 of file TSpider.cxx.

◆ SetLineColor()

void TSpider::SetLineColor ( Color_t  col)
virtual

Set lin color.

Reimplemented from TAttLine.

Definition at line 1152 of file TSpider.cxx.

◆ SetLineStyle()

void TSpider::SetLineStyle ( Style_t  sty)
virtual

Set line style.

Reimplemented from TAttLine.

Definition at line 1136 of file TSpider.cxx.

◆ SetLineWidth()

void TSpider::SetLineWidth ( Width_t  wid)
virtual

Set line width.

Reimplemented from TAttLine.

Definition at line 1168 of file TSpider.cxx.

◆ SetNdivRadial()

void TSpider::SetNdivRadial ( Int_t  div)

Set number of radial divisions.

Definition at line 1216 of file TSpider.cxx.

◆ SetNx()

void TSpider::SetNx ( UInt_t  nx)

Set the X number of sub pads.

Definition at line 1225 of file TSpider.cxx.

◆ SetNy()

void TSpider::SetNy ( UInt_t  ny)

Set the Y number of sub pads.

Definition at line 1302 of file TSpider.cxx.

◆ SetSegmentDisplay()

void TSpider::SetSegmentDisplay ( Bool_t  seg)

Set the segment display or not.

Definition at line 1379 of file TSpider.cxx.

◆ SetSelectionExpression()

void TSpider::SetSelectionExpression ( const char *  selexp)

Compile selection expression if there is one.

Definition at line 1470 of file TSpider.cxx.

◆ SetShowRange()

void TSpider::SetShowRange ( Bool_t  showrange)
inline

Definition at line 128 of file TSpider.h.

◆ SetVariablesExpression()

void TSpider::SetVariablesExpression ( const char *  varexp)

Compile the variables expression from the given string varexp.

Definition at line 1483 of file TSpider.cxx.

◆ SuperposeTo()

void TSpider::SuperposeTo ( TSpider sp)
inline

Definition at line 129 of file TSpider.h.

◆ SyncFormulas()

void TSpider::SyncFormulas ( )
private

Create a TreeFormulaManager to coordinate the formulas.

Definition at line 1521 of file TSpider.cxx.

◆ UpdateView()

void TSpider::UpdateView ( )
private

Update the polylines or the arcs for the current entries.

Definition at line 1553 of file TSpider.cxx.

Member Data Documentation

◆ fAngularLabels

Bool_t TSpider::fAngularLabels
private

Selector.

Definition at line 65 of file TSpider.h.

◆ fArraySize

Int_t TSpider::fArraySize
private

Definition at line 45 of file TSpider.h.

◆ fAve

Double_t* TSpider::fAve
private

[fNx*fNy] current selected entries;

Definition at line 50 of file TSpider.h.

◆ fAveragePoly

TPolyLine* TSpider::fAveragePoly
private

Definition at line 55 of file TSpider.h.

◆ fAverageSlices

TArc** TSpider::fAverageSlices
private

Definition at line 56 of file TSpider.h.

◆ fCanvas

TCanvas* TSpider::fCanvas
private

Average slices.

Definition at line 57 of file TSpider.h.

◆ fCurrentEntries

Long64_t* TSpider::fCurrentEntries
private

Definition at line 49 of file TSpider.h.

◆ fDisplayAverage

Bool_t TSpider::fDisplayAverage
private

Definition at line 66 of file TSpider.h.

◆ fEntry

Long64_t TSpider::fEntry
private

Definition at line 46 of file TSpider.h.

◆ fFirstEntry

Long64_t TSpider::fFirstEntry
private

Definition at line 48 of file TSpider.h.

◆ fForceDim

Bool_t TSpider::fForceDim
private

Definition at line 67 of file TSpider.h.

◆ fFormulas

TList* TSpider::fFormulas
private

Pointer to the mother pad.

Definition at line 58 of file TSpider.h.

◆ fInput

TList* TSpider::fInput
private

Definition at line 59 of file TSpider.h.

◆ fManager

TTreeFormulaManager* TSpider::fManager
private

Definition at line 60 of file TSpider.h.

◆ fMax

Double_t* TSpider::fMax
private

Definition at line 51 of file TSpider.h.

◆ fMin

Double_t* TSpider::fMin
private

Definition at line 52 of file TSpider.h.

◆ fNcols

UInt_t TSpider::fNcols
private

Definition at line 44 of file TSpider.h.

◆ fNentries

Long64_t TSpider::fNentries
private

Definition at line 47 of file TSpider.h.

◆ fNx

UInt_t TSpider::fNx
private

Definition at line 42 of file TSpider.h.

◆ fNy

UInt_t TSpider::fNy
private

Definition at line 43 of file TSpider.h.

◆ fPolargram

TGraphPolargram* TSpider::fPolargram
private

Definition at line 61 of file TSpider.h.

◆ fPolyList

TList* TSpider::fPolyList
private

Definition at line 62 of file TSpider.h.

◆ fSegmentDisplay

Bool_t TSpider::fSegmentDisplay
private

Definition at line 68 of file TSpider.h.

◆ fSelect

TTreeFormula* TSpider::fSelect
private

Definition at line 63 of file TSpider.h.

◆ fSelector

TSelectorDraw* TSpider::fSelector
private

Definition at line 64 of file TSpider.h.

◆ fShowRange

Bool_t TSpider::fShowRange
private

Definition at line 69 of file TSpider.h.

◆ fSuperposed

TList* TSpider::fSuperposed
private

Definition at line 53 of file TSpider.h.

◆ fTree

TTree* TSpider::fTree
private

Definition at line 54 of file TSpider.h.

Libraries for TSpider:
[legend]

The documentation for this class was generated from the following files: