Computation of PPtilde and PPhat. IO still in dev.

parent cd7287a0
...@@ -30,11 +30,11 @@ while RUN_ON ...@@ -30,11 +30,11 @@ while RUN_ON
@timeit "HMC" Gauge_update() @timeit "HMC" Gauge_update()
@timeit "Two point function" begin @timeit "Two point function" begin
two_pt() Frontflow_pt()
two_pt_rnd() two_pt_lagrange()
end end
@timeit "One point function" one_pt() @timeit "One point function" Backflow_pt()
@timeit "Saving" save_data() @timeit "Saving" save_data()
......
...@@ -112,7 +112,7 @@ end ...@@ -112,7 +112,7 @@ end
function save_data() function save_data()
ihdr = [convert(Int32,0608686513)] ihdr = [convert(Int32,1730280201)]
fname = "./output/"*params["Run"]["name"]*".bdio" fname = "./output/"*params["Run"]["name"]*".bdio"
if isfile(fname) if isfile(fname)
...@@ -151,7 +151,8 @@ function save_data() ...@@ -151,7 +151,8 @@ function save_data()
BDIO_write!(fb,pp_corr_t[:,noi,fl]) BDIO_write!(fb,pp_corr_t[:,noi,fl])
BDIO_write!(fb,ap_corr_t[:,noi,fl]) BDIO_write!(fb,ap_corr_t[:,noi,fl])
BDIO_write!(fb,[phat_t[noi,fl]]) BDIO_write!(fb,pp_hat_t[:,noi,fl])
BDIO_write!(fb,pptilde_t[:,noi,fl])
end end
end end
......
This diff is collapsed.
...@@ -3,6 +3,7 @@ using ADerrors ...@@ -3,6 +3,7 @@ using ADerrors
using BDIO using BDIO
## NEDS UPDATE
function read_ff(name::String) function read_ff(name::String)
file = BDIO_open(name,"r","FerFlow correlators") file = BDIO_open(name,"r","FerFlow correlators")
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment