ROOT
6.10/00
Reference Guide
ROOT Home Page
Main Page
Tutorials
User's Classes
Namespaces
All Classes
Files
Release Notes
File List
File Members
All
Classes
Namespaces
Files
Functions
Variables
Typedefs
Enumerations
Enumerator
Properties
Friends
Macros
Groups
Pages
tutorials
pyroot
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(str(ROOT.gROOT.GetTutorialDir()),
'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'
) ) )