Skip to content
Snippets Groups Projects
Commit 352ad17a authored by Bertram Kopf's avatar Bertram Kopf
Browse files

minor fix in qft++

parent 02a4cebf
No related branches found
No related tags found
No related merge requests found
...@@ -101,7 +101,7 @@ void PolVector::_SetProjector(){ ...@@ -101,7 +101,7 @@ void PolVector::_SetProjector(){
MetricTensor g; MetricTensor g;
if(_spin == 1){ if(_spin == 1){
if(_mass > 0.) _projector = (_p4%_p4)/(_mass*_mass) - g; if(_mass > 1e-6) _projector = (_p4%_p4)/(_mass*_mass) - g;
else _projector = -1.*g; else _projector = -1.*g;
} }
else{ else{
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment