https://github.com/root-project/root
Raw File
Tip revision: 1d3fcd975eb2957d69334911e994a25b7e1aa50c authored by Fons Rademakers on 05 November 2010, 14:42:46 UTC
tag patch release v5-27-06b.
Tip revision: 1d3fcd9
dt_MakeFiles.sh
#!/bin/sh 

size=50
tracks=600
comp=0
action=1

if test $# -gt 0 ; then
    echo ajusting size to $1
    size=$1
fi


./Event $size $comp 0 $action $tracks
mv Event.root Event.new.split0.root

./Event $size $comp 1 $action $tracks
mv Event.root Event.new.split1.root

./Event $size $comp 9 $action $tracks
mv Event.root Event.new.split9.root

./Event $size $comp -1 $action $tracks
mv Event.root Event.old.streamed.root

./Event $size $comp -2 $action $tracks
mv Event.root Event.old.split.root

# Next step is to do something like
# root -q 'dt_MakeRef.C("Event.old.split.root");'
back to top