]> git.uio.no Git - u/mrichter/AliRoot.git/blame - test/prompt/RunQAViewer
Update timestamps for new AMANDA simulation (17/02/2015)
[u/mrichter/AliRoot.git] / test / prompt / RunQAViewer
CommitLineData
8ec2068a 1#!/bin/bash
2#################################################################
3#
4# Runs the QA histogram viewer in a specified directory
5#
6# Origin: Mikolaj Krzewicki, Nikhef, Mikolaj.Krzewicki@cern.ch
7#
8#################################################################
9cd ~/data/current
10ls -1tr
11echo ""
12read -p " Choose directory from the list above: " dir
13if [[ -d $dir ]]
14then
15 cd $dir
16else
17 echo "no such directory - typo?"
18 return 999
19fi
20
21aliroot qam.C
22
23echo "done"