Logo ROOT   6.14/05
Reference Guide
TBranchProxyDirector.cxx
Go to the documentation of this file.
1 // @(#)root/base:$Id$
2 // Author: Philippe Canal 13/05/2003
3 
4 /*************************************************************************
5  * Copyright (C) 1995-2000, Rene Brun, Fons Rademakers and al. *
6  * All rights reserved. *
7  * *
8  * For the licensing terms see $ROOTSYS/LICENSE. *
9  * For the list of contributors see $ROOTSYS/README/CREDITS. *
10  *************************************************************************/
11 
12 /** TBranchProxyDirector
13 This class is used to 'drive' and hold a serie of TBranchProxy objects
14 which represent and give access to the content of TTree object.
15 This is intended to be used as part of a generate Selector class
16 which will hold the directory and its associate
17 */
18 
19 #include "TBranchProxyDirector.h"
20 #include "TBranchProxy.h"
21 #include "TFriendProxy.h"
22 #include "TTree.h"
23 #include "TEnv.h"
24 #include "TH1F.h"
25 #include "TPad.h"
26 #include "TList.h"
27 
28 #include <algorithm>
29 
30 namespace std {} using namespace std;
31 
33 
34 namespace ROOT {
35 namespace Internal {
36 
37  // Helper function to call Reset on each TBranchProxy
38  void Reset(Detail::TBranchProxy *x) { x->Reset(); }
39 
40  // Helper function to call SetReadEntry on all TFriendProxy
42 
43  // Helper class to call Update on all TFriendProxy
44  struct Update {
45  Update(TTree *newtree) : fNewTree(newtree) {}
46  TTree *fNewTree;
47  void operator()(TFriendProxy *x) { x->Update(fNewTree); }
48  };
49 
50 
51  TBranchProxyDirector::TBranchProxyDirector(TTree* tree, Long64_t i) :
52  fTree(tree),
53  fEntry(i)
54  {
55  // Simple constructor
56  }
57 
59  // cint has a problem casting int to long long
60  fTree(tree),
61  fEntry(i)
62  {
63  // Simple constructor
64  }
65 
67 
68  // Attach a TBranchProxy object to this director. The director just
69  // 'remembers' this BranchProxy and does not own it. It will be use
70  // to apply Tree wide operation (like reseting).
71  fDirected.push_back(p);
72  }
73 
75 
76  // Attach a TFriendProxy object to this director. The director just
77  // 'remembers' this BranchProxy and does not own it. It will be use
78  // to apply Tree wide operation (like reseting).
79  fFriends.push_back(p);
80  }
81 
83  // Create a temporary 1D histogram.
84 
85  Int_t nbins = gEnv->GetValue("Hist.Binning.1D.x",100);
86  Double_t vmin=0, vmax=0;
87  Double_t xmin=0, xmax=0;
88  Bool_t canExtend = kTRUE;
89  TString opt( options );
90  Bool_t optSame = opt.Contains("same");
91  if (optSame) canExtend = kFALSE;
92 
93  if (gPad && optSame) {
94  TListIter np(gPad->GetListOfPrimitives());
95  TObject *op;
96  TH1 *oldhtemp = 0;
97  while ((op = np()) && !oldhtemp) {
98  if (op->InheritsFrom(TH1::Class())) oldhtemp = (TH1 *)op;
99  }
100  if (oldhtemp) {
101  nbins = oldhtemp->GetXaxis()->GetNbins();
102  vmin = oldhtemp->GetXaxis()->GetXmin();
103  vmax = oldhtemp->GetXaxis()->GetXmax();
104  } else {
105  vmin = gPad->GetUxmin();
106  vmax = gPad->GetUxmax();
107  }
108  } else {
109  vmin = xmin;
110  vmax = xmax;
111  if (xmin < xmax) canExtend = kFALSE;
112  }
113  TH1F *hist = new TH1F("htemp","htemp",nbins,vmin,vmax);
114  hist->SetLineColor(fTree->GetLineColor());
115  hist->SetLineWidth(fTree->GetLineWidth());
116  hist->SetLineStyle(fTree->GetLineStyle());
117  hist->SetFillColor(fTree->GetFillColor());
118  hist->SetFillStyle(fTree->GetFillStyle());
119  hist->SetMarkerStyle(fTree->GetMarkerStyle());
120  hist->SetMarkerColor(fTree->GetMarkerColor());
121  hist->SetMarkerSize(fTree->GetMarkerSize());
122  if (canExtend) hist->SetCanExtend(TH1::kAllAxes);
123  hist->GetXaxis()->SetTitle("var");
124  hist->SetBit(kCanDelete);
125  hist->SetDirectory(0);
126 
127  if (opt.Length() && opt.Contains("e")) hist->Sumw2();
128  return hist;
129  }
130 
132 
133  // move to a new entry to read
134  fEntry = entry;
135  if (!fFriends.empty()) {
136  for_each(fFriends.begin(),fFriends.end(),ResetReadEntry);
137  }
138  }
139 
140  TTree* TBranchProxyDirector::SetTree(TTree *newtree) {
141 
142  // Set the BranchProxy to be looking at a new tree.
143  // Reset all.
144  // Return the old tree.
145 
146  TTree* oldtree = fTree;
147  fTree = newtree;
148  fEntry = -1;
149  //if (fInitialized) fInitialized = setup();
150  //fprintf(stderr,"calling SetTree for %p\n",this);
151  for_each(fDirected.begin(),fDirected.end(),Reset);
152  Update update(fTree);
153  for_each(fFriends.begin(),fFriends.end(),update);
154  return oldtree;
155  }
156 
157 } // namespace Internal
158 } // namespace ROOT
virtual void SetLineWidth(Width_t lwidth)
Set the line width.
Definition: TAttLine.h:43
float xmin
Definition: THbookFile.cxx:93
long long Long64_t
Definition: RtypesCore.h:69
Namespace for new ROOT classes and functions.
Definition: StringConv.hxx:21
virtual void SetDirectory(TDirectory *dir)
By default when an histogram is created, it is added to the list of histogram objects in the current ...
Definition: TH1.cxx:8231
THist< 1, float, THistStatContent, THistStatUncertainty > TH1F
Definition: THist.hxx:285
1-D histogram with a float per channel (see TH1 documentation)}
Definition: TH1.h:567
int Int_t
Definition: RtypesCore.h:41
bool Bool_t
Definition: RtypesCore.h:59
virtual void SetFillStyle(Style_t fstyle)
Set the fill area style.
Definition: TAttFill.h:39
STL namespace.
TRObject operator()(const T1 &t1) const
Iterator of linked list.
Definition: TList.h:197
void SetBit(UInt_t f, Bool_t set)
Set or unset the user status bits as specified in f.
Definition: TObject.cxx:694
Double_t GetXmin() const
Definition: TAxis.h:133
TH1F * CreateHistogram(const char *options)
Double_t x[n]
Definition: legend1.C:17
void Class()
Definition: Class.C:29
virtual void SetMarkerColor(Color_t mcolor=1)
Set the marker color.
Definition: TAttMarker.h:38
std::list< TFriendProxy * > fFriends
virtual void SetLineColor(Color_t lcolor)
Set the line color.
Definition: TAttLine.h:40
std::list< Detail::TBranchProxy * > fDirected
void ResetReadEntry()
Refresh the cached read entry number from the original tree.
virtual void SetFillColor(Color_t fcolor)
Set the fill area color.
Definition: TAttFill.h:37
void Update(TTree *newmain)
Update the address of the underlying tree.
static void update(gsl_integration_workspace *workspace, double a1, double b1, double area1, double error1, double a2, double b2, double area2, double error2)
void ResetReadEntry(TFriendProxy *x)
virtual void SetMarkerStyle(Style_t mstyle=1)
Set the marker style.
Definition: TAttMarker.h:40
float xmax
Definition: THbookFile.cxx:93
void Reset(Detail::TBranchProxy *x)
virtual void SetMarkerSize(Size_t msize=1)
Set the marker size.
Definition: TAttMarker.h:41
const Bool_t kFALSE
Definition: RtypesCore.h:88
#define ClassImp(name)
Definition: Rtypes.h:359
double Double_t
Definition: RtypesCore.h:55
R__EXTERN TEnv * gEnv
Definition: TEnv.h:171
The TH1 histogram class.
Definition: TH1.h:56
virtual void SetLineStyle(Style_t lstyle)
Set the line style.
Definition: TAttLine.h:42
virtual UInt_t SetCanExtend(UInt_t extendBitMask)
Make the histogram axes extendable / not extendable according to the bit mask returns the previous bi...
Definition: TH1.cxx:6138
Mother of all ROOT objects.
Definition: TObject.h:37
TBranchProxyDirector(const TBranchProxyDirector &)
virtual void Sumw2(Bool_t flag=kTRUE)
Create structure to store sum of squares of weights.
Definition: TH1.cxx:8313
#define gPad
Definition: TVirtualPad.h:285
Definition: tree.py:1
Base class for all the proxy object.
Definition: TBranchProxy.h:66
Int_t GetNbins() const
Definition: TAxis.h:121
virtual void SetTitle(const char *title="")
Set the title of the TNamed.
Definition: TNamed.cxx:164
virtual Int_t GetValue(const char *name, Int_t dflt) const
Returns the integer value for a resource.
Definition: TEnv.cxx:491
const Bool_t kTRUE
Definition: RtypesCore.h:87
Double_t GetXmax() const
Definition: TAxis.h:134
TAxis * GetXaxis()
Get the behaviour adopted by the object about the statoverflows. See EStatOverflows for more informat...
Definition: TH1.h:315
void Attach(Detail::TBranchProxy *p)