ROOT  6.07/01
Reference Guide
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Groups Pages
copytree3.C
Go to the documentation of this file.
1 /// \file
2 /// \ingroup tutorial_tree
3 ///
4 /// Example of Root macro to copy a subset of a Tree to a new Tree, selecting entries.
5 ///
6 /// Only selected entries are copied to the new Tree.
7 /// The input file has been generated by the program in $ROOTSYS/test/Event
8 /// with `Event 1000 1 99 1`
9 /// \macro_code
10 /// \author Rene Brun
11 
12 void copytree3() {
13 
14  gSystem->Load("$ROOTSYS/test/libEvent");
15 
16  //Get old file, old tree and set top branch address
17  TFile *oldfile = new TFile("$ROOTSYS/test/Event.root");
18  TTree *oldtree = (TTree*)oldfile->Get("T");
19  Long64_t nentries = oldtree->GetEntries();
20  Event *event = 0;
21  oldtree->SetBranchAddress("event",&event);
22 
23  //Create a new file + a clone of old tree in new file
24  TFile *newfile = new TFile("small.root","recreate");
25  TTree *newtree = oldtree->CloneTree(0);
26 
27  for (Long64_t i=0;i<nentries; i++) {
28  oldtree->GetEntry(i);
29  if (event->GetNtrack() > 605) newtree->Fill();
30  event->Clear();
31  }
32  newtree->Print();
33  newtree->AutoSave();
34  delete oldfile;
35  delete newfile;
36 }
long long Long64_t
Definition: RtypesCore.h:69
virtual Int_t Fill()
Fill all branches.
Definition: TTree.cxx:4306
A ROOT file is a suite of consecutive data records (TKey instances) with a well defined format...
Definition: TFile.h:45
virtual TObject * Get(const char *namecycle)
Return pointer to object identified by namecycle.
virtual Int_t GetEntry(Long64_t entry=0, Int_t getall=0)
Read all branches of entry and return total number of bytes read.
Definition: TTree.cxx:5144
virtual int Load(const char *module, const char *entry="", Bool_t system=kFALSE)
Load a shared library.
Definition: TSystem.cxx:1766
virtual TTree * CloneTree(Long64_t nentries=-1, Option_t *option="")
Create a clone of this tree and copy nentries.
Definition: TTree.cxx:2960
virtual void Print(Option_t *option="") const
Print a summary of the tree contents.
Definition: TTree.cxx:6495
virtual Int_t SetBranchAddress(const char *bname, void *add, TBranch **ptr=0)
Change branch address, dealing with clone trees properly.
Definition: TTree.cxx:7510
R__EXTERN TSystem * gSystem
Definition: TSystem.h:545
int nentries
Definition: THbookFile.cxx:89
virtual Long64_t GetEntries() const
Definition: TTree.h:386
A TTree object has a header with a name and a title.
Definition: TTree.h:98
virtual Long64_t AutoSave(Option_t *option="")
AutoSave tree header every fAutoSave bytes.
Definition: TTree.cxx:1308