Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
D
Diffractive Cross Section
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
pyjorunk
Diffractive Cross Section
Commits
52b52652
Commit
52b52652
authored
1 month ago
by
Pyry Runko (Puck)
Browse files
Options
Downloads
Patches
Plain Diff
removed overloaded sumAmplitudes
parent
05a1cc7f
No related branches found
No related tags found
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
src/ipglasma.cpp
+1
-84
1 addition, 84 deletions
src/ipglasma.cpp
src/ipglasma.hpp
+0
-1
0 additions, 1 deletion
src/ipglasma.hpp
src/main.cpp
+0
-7
0 additions, 7 deletions
src/main.cpp
with
1 addition
and
92 deletions
src/ipglasma.cpp
+
1
−
84
View file @
52b52652
...
...
@@ -475,6 +475,7 @@ int IPGlasma::WilsonLineCoordinate(int xind, int yind)
}
// compute complex amplitude with one wilson line and two indices
std
::
complex
<
double
>
IPGlasma
::
ComplexAmplitude
(
double
xpom
,
WilsonLine
quark
,
int
q2
[
2
])
{
...
...
@@ -517,57 +518,7 @@ std::complex<double> IPGlasma::ComplexAmplitude(double xpom, WilsonLine quark, i
return
amp
;
}
// overload amplitude when given coordinates are integers i.e. indices
std
::
complex
<
double
>
IPGlasma
::
ComplexAmplitude
(
double
xpom
,
int
q1
[
2
],
int
q2
[
2
])
{
//TODO: make work with int?
//ApplyPeriodicBoundaryConditions(q1);
//ApplyPeriodicBoundaryConditions(q2);
// TODO: make work with indices (xMax?
// Out of grid? Return 0 (probably very large dipole)
//if (q1[0] < xcoords[0] or q1[0] > xcoords[xcoords.size()-1]
// or q1[1] < ycoords[0] or q1[1] > ycoords[ycoords.size()-1]
// etc...
// ?TODO?: (double?) check if dipole is less than lattice spacing
// First find corresponding grid indeces
WilsonLine
quark
=
GetWilsonLine
(
WilsonLineCoordinate
(
q1
[
0
],
q1
[
1
]));
WilsonLine
antiquark
=
GetWilsonLine
(
WilsonLineCoordinate
(
q2
[
0
],
q2
[
1
]));
//antiquark = antiquark.HermitianConjugate();
WilsonLine
prod
;
try
{
prod
=
quark
.
MultiplyByHermitianConjugate
(
antiquark
);
//prod = quark*antiquark;
}
catch
(...)
{
cerr
<<
"Matrix multiplication failed!"
<<
endl
;
cout
<<
"Quark: "
<<
q1
[
0
]
<<
", "
<<
q1
[
1
]
<<
endl
;
cout
<<
quark
<<
endl
;
cout
<<
"Antiquark: "
<<
q2
[
0
]
<<
", "
<<
q2
[
1
]
<<
endl
;
cout
<<
antiquark
<<
endl
;
exit
(
1
);
}
std
::
complex
<
double
>
amp
=
1.0
-
1.0
/
NC
*
prod
.
Trace
();
double
result
=
amp
.
real
();
if
(
result
<
0
)
return
0
;
return
result
;
if
(
result
>
1
)
return
1
;
if
(
result
<
0
)
return
0
;
if
(
isnan
(
result
))
{
cerr
<<
"Wilson line trance NaN, quark coords "
<<
q1
[
0
]
<<
", "
<<
q1
[
1
]
<<
" and "
<<
q2
[
0
]
<<
", "
<<
q2
[
1
]
<<
endl
;
exit
(
1
);
}
return
result
;
}
//TODO: check
double
IPGlasma
::
DistanceToOrigin
(
int
q
[
2
]){
...
...
@@ -580,40 +531,6 @@ double IPGlasma::DistanceToOrigin(int q[2]){
}
//TODO: check
std
::
complex
<
double
>
IPGlasma
::
SumAmplitudes
(
int
w
)
{
std
::
complex
<
double
>
sum
=
0.0
;
int
L
=
xcoords
.
size
();
cout
<<
"# Summing with lattice size L = "
<<
L
<<
endl
;
WilsonLine
quark
;
for
(
int
i
=
0
;
i
<
L
;
i
+=
1
){
for
(
int
j
=
0
;
j
<
L
;
j
+=
1
){
int
q1
[
2
]
=
{
i
,
j
};
//TODO: pointer instead of copy?
quark
=
GetWilsonLine
(
WilsonLineCoordinate
(
i
,
j
));
for
(
int
v
=
0
;
v
<
L
;
v
+=
1
){
int
q2
[
2
]
=
{
v
,
w
};
double
r1
=
DistanceToOrigin
(
q1
);
double
r2
=
DistanceToOrigin
(
q2
);
if
(
r1
>
1.
&&
r2
>
1.
){
//cout << "#!!Throwing away large dipole separation!" << endl;
//cout << "#Quark coordinate indices " << q1[0] << "," << q1[1] << " and " << q2[0] << "," << q2[1] << endl;
//cout << "#Dipole size is " << r1-r2 << endl;
//cout << "#Dipole amplitude is " << Amplitude(0, q1, q2) << endl;
continue
;
}
sum
+=
ComplexAmplitude
(
0
,
quark
,
q2
);
}
}
}
cout
<<
"# Intermediate sum"
<<
endl
;
cout
<<
sum
<<
endl
;
cout
<<
"#---------"
<<
endl
;
return
sum
;
}
//TODO: check
std
::
complex
<
double
>
IPGlasma
::
SumAmplitudes
()
...
...
This diff is collapsed.
Click to expand it.
src/ipglasma.hpp
+
0
−
1
View file @
52b52652
...
...
@@ -60,7 +60,6 @@ public:
std
::
complex
<
double
>
ComplexAmplitude
(
double
xpom
,
int
q1
[
2
],
int
q2
[
2
]);
std
::
complex
<
double
>
ComplexAmplitude
(
double
xpom
,
WilsonLine
quark
,
int
q2
[
2
]);
std
::
complex
<
double
>
SumAmplitudes
();
std
::
complex
<
double
>
SumAmplitudes
(
int
w
);
struct
quark_flavor
{
double
mass
;
...
...
This diff is collapsed.
Click to expand it.
src/main.cpp
+
0
−
7
View file @
52b52652
...
...
@@ -77,13 +77,6 @@ int main(int argc, char* argv[])
printDipoleAmplitudes
(
fname
,
ipglasma
);
}
int
task_id
=
0
;
if
(
argc
>
3
){
task_id
=
atoi
(
argv
[
3
]);
cout
<<
"#Integrating array job #"
<<
task_id
<<
endl
;
ipglasma
.
SumAmplitudes
(
task_id
);
}
else
{
std
::
complex
<
double
>
sum
=
ipglasma
.
SumAmplitudes
();
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment