Skip to content
Snippets Groups Projects

Task manager

Merged Viktor Klochkov requested to merge task_manager into master
6 files
+ 133
3
Compare changes
  • Side-by-side
  • Inline
Files
6
+ 0
1
@@ -39,7 +39,6 @@ const std::map<int, float> MassMap = { {11, 0.000511}, // e
@@ -39,7 +39,6 @@ const std::map<int, float> MassMap = { {11, 0.000511}, // e
int A = (pid % 10000) / 10;
int A = (pid % 10000) / 10;
return A * 0.938f /* GeV */;
return A * 0.938f /* GeV */;
}
}
auto it = MassMap.find(abs(pid));
auto it = MassMap.find(abs(pid));
if(it != MassMap.end()){
if(it != MassMap.end()){
return MassMap.find(abs(pid))->second;
return MassMap.find(abs(pid))->second;
Loading