42 const std::vector<OpalParticle>::const_iterator &last)
47 template<
class InputIt>
50 unsigned int localNum = last - first;
51 std::vector<double> localStatistics(10);
52 for (InputIt it = first; it != last; ++ it) {
59 for (
unsigned int i = 0; i < 6; ++ i, ++ l) {
60 localStatistics[l] += particle[i];
64 localStatistics[l++] += particle.
getTime();
67 double eKin = (gamma - 1.0) * particle.
getMass();
68 localStatistics[l++] += eKin;
69 localStatistics[l++] += gamma;
71 localStatistics.back() = localNum;
73 allreduce(localStatistics.data(), localStatistics.size(), std::plus<double>());
82 for (
unsigned int i = 0; i < 3; ++ i) {
87 meanTime_m = localStatistics[l++] * perParticle;
103 template<
class InputIt>
111 std::vector<double> localStatistics(37);
112 for (InputIt it = first; it != last; ++ it) {
118 for (
unsigned int i = 0; i < 6; ++ i) {
120 for (
unsigned int j = 0; j <= i; ++ j, ++ l) {
121 localStatistics[l] += particle[i] * particle[j];
127 for (
unsigned int i = 0; i < 3; ++ i, l += 2) {
128 double r2 =
std::pow(particle[i], 2);
129 localStatistics[l] += r2 * particle[i];
130 localStatistics[l + 1] += r2 * r2;
135 localStatistics[l++] += particle.
getCharge();
136 localStatistics[l++] += particle.
getMass();
139 allreduce(localStatistics.data(), localStatistics.size(), std::plus<double>());
149 for (; l < 6; l += 2) {
154 for (
unsigned int i = 0; i < 6; ++ i) {
155 for (
unsigned int j = 0; j <= i; ++ j, ++ l) {
161 stdTime_m = localMoments[l++] * perParticle;
163 for (
unsigned int i = 0; i < 3; ++ i, l += 2) {
165 double w2 =
moments_m(2 * i , 2 * i) * perParticle;
166 double w3 = localMoments[l] * perParticle;
167 double w4 = localMoments[l + 1] * perParticle;
170 halo_m(i) = (w4 + w1 * (-4 * w3 + 3 * w1 * (tmp + w2))) / tmp;
179 for (
unsigned int i = 0; i < 3; ++ i) {
192 double data[] = {0.0, 0.0};
232 && particle.
getId() == 0;
Tps< T > pow(const Tps< T > &x, int y)
Integer power.
Tps< T > sqrt(const Tps< T > &x)
Square root.
PartBunchBase< T, Dim >::ConstIterator end(PartBunchBase< T, Dim > const &bunch)
PartBunchBase< T, Dim >::ConstIterator begin(PartBunchBase< T, Dim > const &bunch)
T::PETE_Expr_t::PETE_Return_t max(const PETE_Expr< T > &expr, NDIndex< D > &loc)
void allreduce(const T *input, T *output, int count, Op op)
double haloShift
The constant parameter C to shift halo, by < w^4 > / < w^2 > ^2 - C (w=x,y,z)
bool amr
Enable AMR if true.
double getKineticEnergy(Vector_t p, double mass)
double getGamma(Vector_t p)
size_t getLocalNum() const
ConstIterator end() const
ConstIterator begin() const
static OpalData * getInstance()
double meanKineticEnergy_m
FMatrix< double, 6, 6 > moments_m
void computeMeans(const InputIt &, const InputIt &)
void computeMeanKineticEnergy(PartBunchBase< double, 3 > const &)
unsigned int totalNumParticles_m
void compute(const std::vector< OpalParticle >::const_iterator &, const std::vector< OpalParticle >::const_iterator &)
void computeStatistics(const InputIt &, const InputIt &)
bool isParticleExcluded(const OpalParticle &) const
void fillMembers(std::vector< double > const &)
double stdKineticEnergy_m
const Vector_t & getP() const
Get momentum.
double getCharge() const
Get charge in Coulomb.
double getMass() const
Get mass in GeV/c^2.
double getTime() const
Get time.
int64_t getId() const
Get the id of the particle.
Vektor< double, 3 > Vector_t