Logo ROOT  
Reference Guide
 
Loading...
Searching...
No Matches
main.cpp
Go to the documentation of this file.
1// Author: Alvaro Tolosa-Delgado CERN 07/2023
2// Author: Jorge Agramunt Ros IFIC(Valencia,Spain) 07/2023
3
4/*************************************************************************
5 * Copyright (C) 1995-2023, Rene Brun and Fons Rademakers. *
6 * All rights reserved. *
7 * *
8 * For the licensing terms see $ROOTSYS/LICENSE. *
9 * For the list of contributors see $ROOTSYS/README/CREDITS. *
10 *************************************************************************/
11
12#include <iostream>
13
14void writeTree();
15void readTree();
16void readTreeDF();
17
18int main()
19{
20 std::cout << "Starting writeTree()..." << std::endl;
21 writeTree();
22 std::cout << "Starting writeTree()... Done! " << std::endl;
23 std::cout << "Starting readTree()..." << std::endl;
24 readTree();
25 std::cout << "Starting readTree()... Done! " << std::endl;
26 std::cout << "Starting readTreeDF()..." << std::endl;
27 readTreeDF();
28 std::cout << "Starting readTreeDF()... Done! " << std::endl;
29
30 return 0;
31}
void writeTree()
Definition writeTree.cxx:21
void readTreeDF()
int main()
Definition main.cpp:18
void readTree()
Definition readTree.cxx:21