XIAEventBuilder/batch_evt.to.fsu.100

16 lines
259 B
Plaintext
Raw Permalink Normal View History

2022-03-10 13:59:06 -05:00
#!/bin/bash
DIR=$1
evtList=$(ls ${DIR}/*.evt)
echo "############### list of evt files"
for a in ${evtList} ; do
echo ${a}
done
for a in ${evtList} ; do
echo -e "\033[1;31m============================\033[m"
./armory/pxi-fsu-time-order ${a} 100
done