-
Notifications
You must be signed in to change notification settings - Fork 49
/
Copy pathsource_generation.h
73 lines (63 loc) · 3.46 KB
/
source_generation.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
/***********************************************************************
* Copyright (C) 2002,2003,2004,2005,2006,2007,2008 Carsten Urbach
*
* This file is part of tmLQCD.
*
* tmLQCD is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* tmLQCD is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with tmLQCD. If not, see <http://www.gnu.org/licenses/>.
***********************************************************************/
#ifndef _SOURCE_GENERATION_H
#define _SOURCE_GENERATION_H
void gaussian_volume_source(spinor * const P, spinor * const Q,
const int sample, const int nstore, const int f);
void source_generation_pion_only(spinor * const P, spinor * const Q,
const int t, const int sample,
const int nstore, const unsigned int _seed);
void source_generation_nucleon(spinor * const P, spinor * const Q,
const int is, const int ic,
const int t, const int nt, const int nx,
const int sample, const int nstore,
const int meson);
void extended_pion_source(spinor * const P, spinor * const Q,
spinor * const R, spinor * const S,
const int t0, const int ts,
const double px, const double py, const double pz);
void source_generation_pion_zdir(spinor * const P, spinor * const Q,
const int z,
const int sample, const int nstore);
void full_source_spinor_field_spin_diluted_oet_ts(spinor * const full_spinor,
const int src_ts,
const int src_d,
const int sample,
const int nstore,
const unsigned int oet_seed);
void eo_source_spinor_field_spin_diluted_oet_ts(spinor * const even_cb_spinor,
spinor * const odd_cb_spinor,
const int src_ts,
const int src_d,
const int sample,
const int nstore,
const unsigned int oet_seed);
// generates a point source at the global coordinates passed via the
// four element vector global_txyz_src_pos in the ordering {t,x,y,z}
// the spin index 'is' and the colour index 'ic'
void full_source_spinor_field_point(spinor * const full_spinor,
const int is, const int ic,
const int * const global_txyz_src_pos);
// as full_source_spinor_field_point but with output directly to checkerboarded
// spinors
void eo_source_spinor_field_point(spinor * const even_cb_spinor,
spinor * const odd_cb_spinor,
const int is, const int ic,
const int * const global_txyz_src_pos);
#endif