Fenòmens: minor changes to lab p4

- Modified gnuplot code.
- Changed |run.bash| so it can be executed standalone to interface with
  the mc2 program with a lot of possible options (run
  `./run.bash --help`).
- Added some more temperatures to runAll.bash in order to get better
  precision around the critical temperature.

Change-Id: I4c8bd84eeccd9d444981e885ba41b9fd6fc75481
diff --git a/quad10/fenomens/lab/p4/runAll.bash b/quad10/fenomens/lab/p4/runAll.bash
index e190a34..c4f0783 100755
--- a/quad10/fenomens/lab/p4/runAll.bash
+++ b/quad10/fenomens/lab/p4/runAll.bash
@@ -1,7 +1,7 @@
-TList=$(seq 1.6 0.05 3.2)
+TList=$((seq 1.6 0.05 3.2; seq 2.2 0.01 2.5) | sort -n | uniq)
 LList="8 16 32 64"
 for L in $LList; do
   mkdir -p data_out/dep_en_L/$L
 done
 joblogFile="data_out/dep_en_L/joblog"
-parallel -P -1 --linebuffer --tag --joblog "$joblogFile" ./run.bash {1} {2} ::: $TList ::: $LList
+parallel -P -1 --linebuffer --tag --joblog "$joblogFile" "./run.bash {1} {2} dep_en_L/{2}/{1} --skipIfComputed" ::: $TList ::: $LList