OPAL (Object Oriented Parallel Accelerator Library)  2021.1.99
OPAL
PartBins.cpp
Go to the documentation of this file.
1 //
2 // Class PartBins
3 // Defines a structure to hold energy bins and their associated data
4 //
5 // Copyright (c) 2007-2020, Paul Scherrer Institut, Villigen PSI, Switzerland
6 // All rights reserved
7 //
8 // This file is part of OPAL.
9 //
10 // OPAL is free software: you can redistribute it and/or modify
11 // it under the terms of the GNU General Public License as published by
12 // the Free Software Foundation, either version 3 of the License, or
13 // (at your option) any later version.
14 //
15 // You should have received a copy of the GNU General Public License
16 // along with OPAL. If not, see <https://www.gnu.org/licenses/>.
17 //
18 
19 #include "Algorithms/PartBins.h"
20 #include "Algorithms/PBunchDefs.h"
21 #include "Physics/Physics.h"
22 #include "Utility/Inform.h"
23 #include <cfloat>
24 #include <limits>
25 #include <vector>
26 #include <cmath>
27 
28 PartBins::PartBins(int bins, int sbins) :
29  gamma_m(1.0),
30  bins_m(bins),
31  sBins_m(sbins),
32  xmin_m(0.0),
33  xmax_m(0.0),
34  hBin_m(0.0),
35  nemittedBins_m(0) {
36 
37  // number of particles in the bins on the local node
38  nBin_m = std::unique_ptr<size_t[]>(new size_t[bins_m]);
39  xbinmin_m = std::unique_ptr<double[]>(new double[bins_m]);
40  xbinmax_m = std::unique_ptr<double[]>(new double[bins_m]);
41 
42  // flag whether the bin contain particles or not
43  binsEmitted_m = std::unique_ptr<bool[]>(new bool[bins_m]);
44 
45  nDelBin_m = std::unique_ptr<size_t[]>(new size_t[bins_m]);
46 
47  for(int i = 0; i < bins_m; i++) {
48  nDelBin_m[i] = nBin_m[i] = 0;
50  xbinmax_m[i] = -xbinmin_m[i];
51  binsEmitted_m[i] = false;
52  }
53 }
54 
55 
57  size_t s = 0;
58  size_t sd = 0;
59  size_t gs = 0;
60 
61  for(int i = 0; i < getLastemittedBin(); i++) {
62  s += nBin_m[i];
63  sd += nDelBin_m[i];
64  }
65  gs = s - sd;
66  reduce(gs, gs, OpAddAssign());
67  return gs;
68 }
69 
71  size_t s = 0;
72  s = nBin_m[b];
73  reduce(s, s, OpAddAssign());
74  return s;
75 }
76 
77 
78 void PartBins::updatePartInBin_cyc(size_t countLost[]) {
79 
80  for(int ii = 0; ii < nemittedBins_m; ii++) {
81  if(countLost[ii] > 0)
82  nBin_m[ii] -= countLost[ii];
83  }
84 }
85 
86 void PartBins::resetPartInBin_cyc(size_t newPartNum[], int maxbinIndex) {
87  reduce(maxbinIndex, maxbinIndex, OpMaxAssign());
88  nemittedBins_m = maxbinIndex + 1;
89 
90  for(int ii = 0; ii < nemittedBins_m; ii++) {
91  nBin_m[ii] = newPartNum[ii]; // only count particles on the local node
92  setBinEmitted(ii); // set true for this bin
93  }
94 }
95 
96 
98  tmppart_m.clear();
99  isEmitted_m.clear();
100 }
101 
102 
103 bool PartBins::getPart(size_t n, int bin, std::vector<double> &p) {
104 
105  if(tmppart_m[n][6] == bin) {
106  p = tmppart_m[n];
107  return true;
108  } else
109  return false;
110 }
111 
119  double sshift = std::sqrt(1. - (1. / (gamma_m * gamma_m))) * Physics::c * 1e-13;
120  std::sort(tmppart_m.begin(), tmppart_m.end(), DescendingLocationSort(2));
121  xmax_m = tmppart_m[0][2];
122  xmin_m = tmppart_m.back()[2];
123 
124  for(unsigned int n = 0; n < tmppart_m.size(); n++)
125  tmppart_m[n][2] -= xmax_m + sshift; /* push particles back */
126 
127  xmin_m -= xmax_m + 0.0001 * (xmax_m - xmin_m) + sshift; /* lower the limits */
128  xmax_m = -sshift;
129 
132 
133  hBin_m = (std::abs(xmax_m - xmin_m)) / (bins_m);
134  calcHBins();
135  for(int n = 0; n < bins_m; n++)
136  if(nBin_m[n] == 0) setBinEmitted(n);
137 }
138 
139 
141 
142  for(unsigned int n = 0; n < tmppart_m.size(); n++)
143  tmppart_m[n][6] = getBin(tmppart_m[n][2]);
144  calcExtrema();
145 }
146 
148  for(unsigned int n = 0; n < tmppart_m.size(); n++) {
149  if(xbinmin_m[(int)tmppart_m[n][6]] >= tmppart_m[n][2])
150  xbinmin_m[(int)tmppart_m[n][6]] = tmppart_m[n][2];
151 
152  if(xbinmax_m[(int)tmppart_m[n][6]] <= tmppart_m[n][2])
153  xbinmax_m[(int)tmppart_m[n][6]] = tmppart_m[n][2];
154  }
155 }
156 
158 
159  os << "-----------------------------------------" << endl;
160  os << " CREATE BINNED GAUSS DISTRIBUTION DONE " << endl;
161 
162  os << "Bins= " << bins_m << " hBin= " << hBin_m << " Particle vector length " << tmppart_m.size() << endl;
163 
164  //for(int i = 0; i < gsl_histogram_bins(h_m); i++)
165  //os << "Bin # " << i << " val " << gsl_histogram_get(h_m, i) << endl;
166  for(int i = 0; i < bins_m; i++) {
167  size_t msum = 0;
168  for(int j = 0; j < sBins_m; j++)
169  msum += gsl_histogram_get(h_m.get(), i * sBins_m + j);
170  os << "Bin # " << i << " val " << msum << endl;
171  }
172 
173  if(getLastemittedBin() >= 0)
174  os << "Last emitted bin is " << getLastemittedBin() << endl;
175  else
176  os << "No bin is emitted !" << endl;
177  return os;
178 }
179 
180 int PartBins::getBin(double x) {
185  int b = (int) std::floor(std::abs(xmax_m - x) / hBin_m);
186  nBin_m[b]++;
187  return b;
188 }
Tps< T > sqrt(const Tps< T > &x)
Square root.
Definition: TpsMath.h:91
T::PETE_Expr_t::PETE_Return_t max(const PETE_Expr< T > &expr, NDIndex< D > &loc)
Definition: ReductionLoc.h:84
bool reduce(Communicate &, InputIterator, InputIterator, OutputIterator, const ReduceOp &, bool *IncludeVal=0)
Definition: GlobalComm.hpp:55
PETE_TUTree< FnAbs, typename T::PETE_Expr_t > abs(const PETE_Expr< T > &l)
PETE_TUTree< FnFloor, typename T::PETE_Expr_t > floor(const PETE_Expr< T > &l)
Definition: PETE.h:733
Inform & endl(Inform &inf)
Definition: Inform.cpp:42
constexpr double e
The value of.
Definition: Physics.h:39
constexpr double c
The velocity of light in m/s.
Definition: Physics.h:51
virtual ~PartBins()
Definition: PartBins.cpp:97
void calcHBins()
Definition: PartBins.cpp:140
std::vector< std::vector< double > > tmppart_m
Definition: PartBins.h:121
int sBins_m
Definition: PartBins.h:107
std::unique_ptr< double[]> xbinmax_m
Definition: PartBins.h:115
std::unique_ptr< double[]> xbinmin_m
Definition: PartBins.h:114
double xmin_m
Definition: PartBins.h:110
double gamma_m
Definition: PartBins.h:99
PartBins(int bins, int sbins)
Definition: PartBins.cpp:28
std::unique_ptr< size_t[]> nDelBin_m
Definition: PartBins.h:163
size_t getTotalNumPerBin(int b)
How many particles are in the bin b.
Definition: PartBins.cpp:70
void resetPartInBin_cyc(size_t newPartNum[], int binID)
Definition: PartBins.cpp:86
std::vector< bool > isEmitted_m
Definition: PartBins.h:122
void setBinEmitted(int bin)
Definition: PartBins.h:86
void calcExtrema()
Definition: PartBins.cpp:147
int getBin(double x)
Definition: PartBins.cpp:180
void updatePartInBin_cyc(size_t countLost[])
Definition: PartBins.cpp:78
void sortArray()
Definition: PartBins.cpp:113
Inform & print(Inform &os)
Definition: PartBins.cpp:157
std::unique_ptr< bool[]> binsEmitted_m
Definition: PartBins.h:124
double hBin_m
Definition: PartBins.h:118
bool getPart(size_t n, int bin, std::vector< double > &p)
Definition: PartBins.cpp:103
int nemittedBins_m
Definition: PartBins.h:157
size_t getTotalNum()
How many particles are in all the bins.
Definition: PartBins.cpp:56
double xmax_m
Definition: PartBins.h:111
int getLastemittedBin()
Definition: PartBins.h:136
int bins_m
Definition: PartBins.h:106
std::unique_ptr< size_t[]> nBin_m
Definition: PartBins.h:160
std::unique_ptr< gsl_histogram > h_m
Definition: PartBins.h:165
Definition: Inform.h:42