Skip to content

Commit 5621165

Browse files
Rene BrunRene Brun
authored andcommitted
Remove unused function TTree::Loop
git-svn-id: http://root.cern.ch/svn/root/trunk@5863 27541ba8-7e3a-0410-8455-c3a389f83636
1 parent 61f57c0 commit 5621165

File tree

2 files changed

+2
-14
lines changed

2 files changed

+2
-14
lines changed

tree/inc/TTree.h

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// @(#)root/tree:$Name: $:$Id: TTree.h,v 1.41 2002/07/06 06:54:34 brun Exp $
1+
// @(#)root/tree:$Name: $:$Id: TTree.h,v 1.42 2002/08/17 21:38:19 brun Exp $
22
// Author: Rene Brun 12/01/96
33

44
/*************************************************************************
@@ -235,7 +235,6 @@ class TTree : public TNamed, public TAttLine, public TAttFill, public TAttMarker
235235
virtual void IncrementTotalBuffers(Int_t nbytes) {fTotalBuffers += nbytes;}
236236
Bool_t IsFolder() const {return kTRUE;}
237237
virtual Int_t LoadTree(Int_t entry);
238-
virtual void Loop(Option_t *option="",Int_t nentries=1000000000, Int_t firstentry=0); // *MENU*
239238
virtual Int_t MakeClass(const char *classname=0,Option_t *option="");
240239
virtual Int_t MakeCode(const char *filename=0);
241240
virtual Int_t MakeSelector(const char *selector=0);

tree/src/TTree.cxx

Lines changed: 1 addition & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// @(#)root/tree:$Name: $:$Id: TTree.cxx,v 1.140 2002/12/02 22:07:07 brun Exp $
1+
// @(#)root/tree:$Name: $:$Id: TTree.cxx,v 1.141 2002/12/06 06:35:17 brun Exp $
22
// Author: Rene Brun 12/01/96
33

44
/*************************************************************************
@@ -2734,17 +2734,6 @@ Int_t TTree::LoadTree(Int_t entry)
27342734

27352735
}
27362736

2737-
//______________________________________________________________________________
2738-
void TTree::Loop(Option_t *option, Int_t nentries, Int_t firstentry)
2739-
{
2740-
//*-*-*-*-*-*-*-*-*Loop on nentries of this tree starting at firstentry
2741-
//*-* ===================================================
2742-
2743-
GetPlayer();
2744-
if (!fPlayer) return;
2745-
fPlayer->Loop(option,nentries,firstentry);
2746-
}
2747-
27482737
//______________________________________________________________________________
27492738
Int_t TTree::MakeSelector(const char *selector)
27502739
{

0 commit comments

Comments
 (0)