countdefevents.sh
Go to the documentation of this file.
1 #!/bin/bash
2 
3 input=$1
4 while IFS= read -r line
5 do
6  nevts=$( filelisting.py protodune-sp_runset_${line}_michelremoving_merged_v09_09_01_v0 )
7  echo "Run $line Total entries: $nevts"
8 done < "$input"