mirror of
https://github.com/paboyle/Grid.git
synced 2024-11-10 07:55:35 +00:00
4e085dd0ed
Azusa is working hard on the rectangle term and we'll hopefully start reproducing plaquettes from RBC-UKQCD parameters soon ! My new laptop is pretty warm and is starting to groan ;)
7 lines
177 B
Bash
Executable File
7 lines
177 B
Bash
Executable File
#!/bin/bash
|
|
|
|
LOG=$1
|
|
SWEEPS=$2
|
|
grep Plaq $LOG | tail -n $SWEEPS | awk '{ S=S+$10} END { print S/NR} '
|
|
grep dH $LOG | tail -n $SWEEPS | awk '{ S=S+exp(-$10)} END { print S/NR} '
|