Increase number of files on a channel:
glite-transfer-channel-set -s https://lcgfts.gridpp.rl.ac.uk:8443/glite-data-transfer-fts/services/ChannelManagement -f 15 T2ESTONIA-RALLCG2
List details of a channel:
glite-transfer-channel-list -s https://lcgfts.gridpp.rl.ac.uk:8443/glite-data-transfer-fts/services/ChannelManagement T2ESTONIA-RALLCG2
Tuesday, July 31, 2007
Monday, July 02, 2007
It's been a while...
In the process of doing some thesis corrections I've written a python parser for Les Houche events (more in another post). Anyway it's a nice little utility that writes events into an SQLite database and then make plots using matplotlib. You run it in two ways, first to read the lhe file and then secondly to make the plot.
I've found that the following bash commands are useful when working with the output from Madgraph.
Unzip the unweighted event file for each process:
I've found that the following bash commands are useful when working with the output from Madgraph.
Unzip the unweighted event file for each process:
- for i in `ls ~/corrections/MadGraph|grep -v tar`; do j=`ls $i/Events/|grep lhe|grep -v gz`; gzip ~/corrections/MadGraph/$i/Events/$j; j=`ls $i/Events/|grep unweighted`; gunzip ~/corrections/MadGraph/$i/Events/$j; done
- for j in `ls ~/corrections/MadGraph/|grep -v gz`; do python LHEParser.py -f `ls ~/corrections/MadGraph/$j/Events/*.lhe` -d sqlite:////Users/metson/Desktop/$j.db; done; python LHEParser.py -f `ls ~/corrections/Pythia/*.lhe` -d sqlite:////Users/metson/Desktop/Signal.db;
- for i in `ls ~/Desktop|grep -e "D.db"`; do python LHEParser.py -d sqlite:////Users/metson/Desktop/$i -s; done
- python LHEPlotter.py -d ~/Desktop/
Subscribe to:
Comments (Atom)