Logo ROOT   6.30.04
Reference Guide
 All Namespaces Files Pages
copytree3.C
Go to the documentation of this file.
1 /// \file
2 /// \ingroup tutorial_tree
3 /// \notebook -nodraw
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 ///
10 /// \macro_code
11 ///
12 /// \author Rene Brun
13 
14 R__LOAD_LIBRARY($ROOTSYS/test/libEvent.so)
15 
16 void copytree3()
17 {
18  // Get old file, old tree and set top branch address
19  TString dir = "$ROOTSYS/test/Event.root";
20  gSystem->ExpandPathName(dir);
21  const auto filename = gSystem->AccessPathName(dir) ? "./Event.root" : "$ROOTSYS/test/Event.root";
22 
23  TFile oldfile(filename);
24  TTree *oldtree;
25  oldfile.GetObject("T", oldtree);
26 
27  const auto nentries = oldtree->GetEntries();
28 
29  Event *event = nullptr;
30  oldtree->SetBranchAddress("event", &event);
31 
32  // Create a new file + a clone of old tree in new file
33  TFile newfile("small.root", "recreate");
34  auto newtree = oldtree->CloneTree(0);
35 
36  for (auto i : ROOT::TSeqI(nentries)) {
37  oldtree->GetEntry(i);
38  if (event->GetNtrack() > 605)
39  newtree->Fill();
40  event->Clear();
41  }
42 
43  newtree->Print();
44  newfile.Write();
45 }