[root] / trunk / tree / treeplayer / inc / TFriendProxyDescriptor.h Repository:
ViewVC logotype

Log of /trunk/tree/treeplayer/inc/TFriendProxyDescriptor.h

Parent Directory Parent Directory


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

Revision 41244 - (view) (download) (as text) (annotate) - [select for diffs]
Modified Thu Oct 6 19:42:35 2011 UTC (3 years, 3 months ago) by pcanal
File length: 1671 byte(s)
Diff to previous 22902
Fix Coverity issues:

TBranchSTL: cov 34339 Resource leak (false positive)
TTableDescriptor.cxx: cov 34219,34220 explicit null dereference
TSQLStructure.cxx: cov 34204,34205,34206 Explicit null dereferenced 
TTabCom.cxx: cov 34168 Explicit null dereferenced 
TClassRef.cxx: cove 34165 Explicit null dereferenced (false positive but still confusing coding).
TBufferXML.cxx: 34070 Explicit null dereferenced
TFriendProxyDescriptor.cxx: cov 34066 Uninitialized scalar field
TTreeCloner.cxx: cov 34034057 Dereference null return (stat) 63 Uninitialized scalar field 
TParallelCoordEditor.cxx: 34051,34059,34060,34061 Dereference null return value
TParallelCoord.cxx: 34050,34056, 34057 Dereference null return (stat) 
TBranchProxy.h: 34048 Dereference null return value 
TBranchProxy.cxx: 34043,34044,34045 Dereference null return value
TTree.cxx: 34039 Dereference null return value
TTreePlayer.cxx: 34037 Dereference null return value 
TLeafC.cxx: 34036 Dereference null return value

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: 1684 byte(s)
Diff to previous 20882
move tree, treeplayer and treeviewer under tree meta directory.

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/inc/TFriendProxyDescriptor.h
File length: 1684 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/inc/TFriendProxyDescriptor.h
File length: 1684 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/inc/TFriendProxyDescriptor.h
File length: 1746 byte(s)
Diff to previous 17621
remove :$ from tag line

Revision 17621 - (view) (download) (as text) (annotate) - [select for diffs]
Modified Thu Feb 1 16:19:01 2007 UTC (7 years, 11 months ago) by brun
Original Path: trunk/treeplayer/inc/TFriendProxyDescriptor.h
File length: 1756 byte(s)
Diff to previous 15140
Add missing include TList.h

Revision 15140 - (view) (download) (as text) (annotate) - [select for diffs]
Modified Tue May 23 08:37:42 2006 UTC (8 years, 8 months ago) by brun
Original Path: trunk/treeplayer/inc/TFriendProxyDescriptor.h
File length: 1713 byte(s)
Diff to previous 13210
mplement missing copy constructors and assignement operators

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/inc/TFriendProxyDescriptor.h
File length: 1547 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/inc/TFriendProxyDescriptor.h
File length: 1507 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/inc/TFriendProxyDescriptor.h
File length: 1512 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