Migrate execution to GNU Parallel

GNU Parallel allows us to run several simulations at the same time and
resume the simulations in case the current run stops for some reason.

Thus, the MC-2.f90 code has been adapted to support running it via GNU
Parallel (passing the namefile via stdin), and a bash script which
replaces the previous dependenciaEn*.bash scripts has been created,
named runAll.bash.

Change-Id: I5cc8bd6fb5a176c73dd7372eb61b9eabc278c12b
diff --git a/quad10/fenomens/lab/p4/graphs/dependenciaEnL.gnu b/quad10/fenomens/lab/p4/graphs/dependenciaEnL.gnu
index b7d239b..ec68f46 100755
--- a/quad10/fenomens/lab/p4/graphs/dependenciaEnL.gnu
+++ b/quad10/fenomens/lab/p4/graphs/dependenciaEnL.gnu
@@ -1,15 +1,27 @@
 #!/usr/bin/env -S gnuplot -c
-outputfile = 'data_out/dep_en_L' # Nom de la imatge resultant (sense extensió)
-datafilepre = 'data_out/depEnL/dep_en_T_L'
+outputfile = 'data_out/dep_en_L_graphs/' # Nom de la imatge resultant (sense extensió)
+datafilepre = 'data_out/dep_en_L/tmpdata/'
 datafilepost = '.dat'
-LS="8 16 32 64"
+LS = ARG1
 
-set terminal svg dashed size 600, 1200 font "Computer Modern,Tinos,Helvetica,15"
-set output outputfile.'.svg'
-
-set multiplot layout 2,1
+set terminal svg dashed size 600, 600 font "Computer Modern,Tinos,Helvetica,15"
 
 set title "Capacitat calorífica"
-plot for [L in LS] datafilepre . L . datafilepost using 2:10 with points title "L = ".L
+set output outputfile.'_capacitat_calorifica.svg'
+plot for [L in LS] datafilepre . L . datafilepost using 2:10 with linespoints title "L = ".L
+
 set title "Susceptibilitat magnètica"
-plot for [L in LS] datafilepre . L . datafilepost using 2:11 with points title "L = ".L
+set output outputfile.'_susceptibilitat_magnetica.svg'
+plot for [L in LS] datafilepre . L . datafilepost using 2:11 with linespoints title "L = ".L
+
+set title "Energia"
+set output outputfile.'_energia.svg'
+set key bottom right
+plot for [L in LS] datafilepre . L . datafilepost using 2:($3/(L**2)) with linespoints title "<E>/N, L = ".L, \
+     for [L in LS] datafilepre . L . datafilepost using 2:(-sqrt($4)/(L**2)) with linespoints title "-sqrt(<E^2>)/N, L = ".L
+
+set title "Magnetització"
+set output outputfile.'_magnetitzacio.svg'
+set key top right
+plot for [L in LS] datafilepre . L . datafilepost using 2:($7/(L**2)) with linespoints title "<|M|>/N, L = ".L, \
+     for [L in LS] datafilepre . L . datafilepost using 2:(sqrt($8)/(L**2)) with linespoints title "sqrt(<M^2>)/N, L = ".L