#!/bin/bash

for fdone in *.done ; do 
    root=${fdone/.done/}
    for type in out bun ; do
        if [ ! -e $root.out.bfac ] ; then
            csub sddsbunchingfactor $root.$type $root.$type.bfac -omegaRange=5e12,1e15 -points=1000 -mode=log -column=t
        fi
    done
done
