Loading [MathJax]/extensions/tex2jax.js
Logo ROOT   6.12/07
Reference Guide
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Modules Pages
Namespaces
mrt.py File Reference

Namespaces

 mrt
 

Detailed Description

View in nbviewer Open in SWAN Build ROOT Ntuple from other source.

This program reads the `aptuple.txt' file row by row, then creates the Ntuple by adding row by row.

0.00524592399597
2.95224785805
opening file /mnt/build/workspace/root-makedoc-v612/rootspi/rdoc/src/v6-12-00-patches.build/tutorials/pyroot/aptuple.txt ...
writing file aptuple.root ...
done
import sys, string, os
from ROOT import TFile, TNtuple
ifn = os.path.expandvars("${ROOTSYS}/tutorials/pyroot/aptuple.txt")
ofn = 'aptuple.root'
print 'opening file', ifn, '...'
infile = open( ifn, 'r' )
lines = infile.readlines()
title = lines[0]
labels = string.split( lines[1] )
print 'writing file', ofn, '...'
outfile = TFile( ofn, 'RECREATE', 'ROOT file with an NTuple' )
ntuple = TNtuple( 'ntuple', title, string.join( labels, ':') )
for line in lines[2:]:
words = string.split( line )
row = map( float, words )
apply( ntuple.Fill, row )
outfile.Write()
print 'done'
Author
Wim Lavrijsen

Definition in file mrt.py.