[root] / trunk / tree / treeplayer / src / TFriendProxy.cxx Repository:
ViewVC logotype

Log of /trunk/tree/treeplayer/src/TFriendProxy.cxx

Parent Directory Parent Directory


Links to HEAD: (view) (download) (as text) (annotate)
Sticky Revision:

Revision 43205 - (view) (download) (as text) (annotate) - [select for diffs]
Modified Fri Mar 2 04:30:29 2012 UTC (2 years, 10 months ago) by pcanal
File length: 3163 byte(s)
Diff to previous 43204
Fix cov #36326 (deref null return)

Revision 43204 - (view) (download) (as text) (annotate) - [select for diffs]
Modified Fri Mar 2 04:29:23 2012 UTC (2 years, 10 months ago) by pcanal
File length: 3132 byte(s)
Diff to previous 29044
Fix cov #36327 (deref null return)

Revision 29044 - (view) (download) (as text) (annotate) - [select for diffs]
Modified Wed Jun 17 01:39:14 2009 UTC (5 years, 7 months ago) by pcanal
File length: 3104 byte(s)
Diff to previous 22902
Make sure the friend's proxy director records the local (rather than chain) read entry

Revision 22902 - (view) (download) (as text) (annotate) - [select for diffs]
Modified Mon Mar 31 09:48:42 2008 UTC (6 years, 9 months ago) by rdm
File length: 2982 byte(s)
Diff to previous 21547
move tree, treeplayer and treeviewer under tree meta directory.

Revision 21547 - (view) (download) (as text) (annotate) - [select for diffs]
Modified Thu Dec 20 18:19:50 2007 UTC (7 years, 1 month ago) by pcanal
Original Path: trunk/treeplayer/src/TFriendProxy.cxx
File length: 2982 byte(s)
Diff to previous 21510
Add ClassImp and doc markers

Revision 21510 - (view) (download) (as text) (annotate) - [select for diffs]
Modified Wed Dec 19 20:55:57 2007 UTC (7 years, 1 month ago) by pcanal
Original Path: trunk/treeplayer/src/TFriendProxy.cxx
File length: 2951 byte(s)
Diff to previous 20882
add missing class and typedef descriptions

Revision 20882 - (view) (download) (as text) (annotate) - [select for diffs]
Modified Mon Nov 19 11:31:26 2007 UTC (7 years, 2 months ago) by rdm
Original Path: trunk/treeplayer/src/TFriendProxy.cxx
File length: 2801 byte(s)
Diff to previous 19826
Set property svn:eol-style LF on all source and Makefiles. This should avoid
problems with Win32 line endings ending up in the repository. All MS tools
support LF eols fine.

Revision 19826 - (view) (download) (as text) (annotate) - [select for diffs]
Modified Wed Sep 19 19:56:11 2007 UTC (7 years, 4 months ago) by rdm
Original Path: trunk/treeplayer/src/TFriendProxy.cxx
File length: 2801 byte(s)
Diff to previous 19825
imported svn:keywords Id property

Revision 19825 - (view) (download) (as text) (annotate) - [select for diffs]
Modified Wed Sep 19 19:49:10 2007 UTC (7 years, 4 months ago) by rdm
Original Path: trunk/treeplayer/src/TFriendProxy.cxx
File length: 2855 byte(s)
Diff to previous 18752
remove :$ from tag line

Revision 18752 - (view) (download) (as text) (annotate) - [select for diffs]
Modified Sat May 12 13:48:24 2007 UTC (7 years, 8 months ago) by pcanal
Original Path: trunk/treeplayer/src/TFriendProxy.cxx
File length: 2865 byte(s)
Diff to previous 17615
add protection in case the friend tree is missing

Revision 17615 - (view) (download) (as text) (annotate) - [select for diffs]
Modified Thu Feb 1 15:26:19 2007 UTC (7 years, 11 months ago) by brun
Original Path: trunk/treeplayer/src/TFriendProxy.cxx
File length: 2805 byte(s)
Diff to previous 13210
Use forward declarations instead of includes.

Revision 13210 - (view) (download) (as text) (annotate) - [select for diffs]
Modified Fri Nov 11 23:21:43 2005 UTC (9 years, 2 months ago) by pcanal
Original Path: trunk/treeplayer/src/TFriendProxy.cxx
File length: 2783 byte(s)
Diff to previous 11047
Update the spacing and documentation to match the coding rule

Revision 11047 - (view) (download) (as text) (annotate) - [select for diffs]
Modified Mon Feb 7 18:02:37 2005 UTC (9 years, 11 months ago) by rdm
Original Path: trunk/treeplayer/src/TFriendProxy.cxx
File length: 2723 byte(s)
Diff to previous 9556
From Maarten and Kristjan Gulbrandsen:
Here is the patch with the restructured PROOF code. It parameterizes
PROOF startup, currently implementing "Standard", Condor, MLM and PEAC.
It can easily be extended with other "TProof" classes, e.g. AliEn Proof.
Or what ever next Grid implementation or scheduler comes along.

The MLM, Multi Level Master, code uses a basic packetizer, based on a
MSD (massstorage domain) tag. In MLM mode we have multi-tier client
server setup, like:

client -> super master -> sub master 0 -> slave[0..N]
                          ...
                       -> sub master M -> slave[0..N]

It also contains a large number of smaller fixes. Credit for most of
the work goes to Kris!

We have tested this on multipe platforms (RH7.3, RH9, SL3) and in
multiple configurations. Should be stable.

Revision 9556 - (view) (download) (as text) (annotate) - [select for diffs]
Added Tue Jul 20 09:40:19 2004 UTC (10 years, 6 months ago) by brun
Original Path: trunk/treeplayer/src/TFriendProxy.cxx
File length: 2728 byte(s)
From Philippe:

This patch implements support for TTree Friend in the new TTree Proxy
mechanism (See releases notes of ROOT 4.00/08).

For example with the result of tutorials/treefriend.C and the macro print.C:

  void print() {
    cout << "Entry #" << fChain->GetReadEntry()
         << " and #" << TF.GetReadEntry() << "  \t"
         << x << " ";  // from the main tree
    if (TF.GetReadEntry()>=0) cout << TF.x; // from the friend tree
    else cout << "N/A";
    cout << endl;
  }

You can simply create a Proxy based TSelector with
  T->MakeProxy("withfriend","print.C","","nohist");
Then use the resulting file (withfriend.h) as anyother
TSelector script.  For example:
  T->Process("withfriend.h+","",20);

Or you can generate a simple histogram 2 files fill.C and fillCut.C
  root [5] .! cat fill.C
  double fill() {
    return x - TF.x;
  }
  root [6] .! cat fillCut.C
  Bool_t fillCut() {
    return TF.GetReadEntry()>=0;
  }
and you can just do:
  T->Draw("fill.C+","fillCut.C");

This form allows you to request diffs between any two revisions of this file. For each of the two "sides" of the diff, enter a numeric revision.

  Diffs between and
  Type of Diff should be a

Sort log by:

Subversion Admin
ViewVC Help
Powered by ViewVC 1.0.9