Logo ROOT   6.08/07
Reference Guide
rootmarks.py
Go to the documentation of this file.
1 ## \file
2 ## \ingroup tutorial_pyroot
3 ## Prints a summary of all ROOT benchmarks (must be run before)
4 ## The ROOTMARK number printed is by reference to a Pentium IV 2.4 Ghz
5 ## (with 512 MBytes memory and 120 GBytes IDE disk)
6 ## taken by definition as 600 ROOTMARKS in batch mode in executing
7 ## python benchmarks.py
8 ##
9 ## \macro_code
10 ##
11 ## \author Wim Lavrijsen
12 
13 import os
14 import ROOT
15 
16 macrodir = os.path.join(ROOT.gROOT.GetTutorialsDir(), 'pyroot')
17 
18 # use ROOT macro to make sure that bench numbers get updated in one place
19 ROOT.gROOT.Macro( ROOT.gSystem.UnixPathName( os.path.join( macrodir, os.pardir, 'rootmarks.C' ) ) )