OPAL (Object Oriented Parallel Accelerator Library)  2021.1.99
OPAL
WakeFunction.h
Go to the documentation of this file.
1 //
2 // Class WakeFunction
3 //
4 // Copyright (c) 2008 - 2020, Paul Scherrer Institut, Villigen PSI, Switzerland
5 // All rights reserved
6 //
7 // This file is part of OPAL.
8 //
9 // OPAL is free software: you can redistribute it and/or modify
10 // it under the terms of the GNU General Public License as published by
11 // the Free Software Foundation, either version 3 of the License, or
12 // (at your option) any later version.
13 //
14 // You should have received a copy of the GNU General Public License
15 // along with OPAL. If not, see <https://www.gnu.org/licenses/>.
16 //
17 #ifndef WAKEFUNCTION_HH
18 #define WAKEFUNCTION_HH
19 
20 #include <string>
21 #include <vector>
22 
23 class ElementBase;
24 
25 template <class T, unsigned Dim>
26 class PartBunchBase;
27 
28 class WakeFunction {
29 public:
30  WakeFunction(std::string name, unsigned int n):
31  nBins_m(n),
32  name_m(name) { };
33 
34  virtual ~WakeFunction(){ };
35  virtual void initialize(const ElementBase */*elref*/){ };
36  virtual void apply(PartBunchBase<double, 3> *bunch) = 0;
37  virtual const std::string getType() const = 0;
38  const std::string & getName() const {
39  return name_m;
40  }
41 
42 protected:
43  const unsigned int nBins_m;
44 
45 private:
46  const std::string name_m;
47 };
48 
49 class LineDensity: public std::vector<double> {
50 public:
51  LineDensity(int size = 0, double defaultValue = 0.0) : std::vector<double>(size, defaultValue) {}
52  void getFirstDerivative(std::vector<double> &firstDerivative, const double &hz);
53 };
54 
55 inline void LineDensity::getFirstDerivative(std::vector<double> &firstDerivative, const double &hz) {
56  const size_t size = this->size();
57  if(firstDerivative.size() != size)
58  firstDerivative.resize(size, 0.0);
59 
60  firstDerivative[0] = ((*this)[1] - (*this)[0]) / hz;
61  for(unsigned int i = 1; i + 1 < size; ++i)
62  firstDerivative[i] = ((*this)[i + 1] - (*this)[i - 1]) / hz;
63  firstDerivative[size - 1] = ((*this)[size - 1] - (*this)[size - 2]) / hz;
64 }
65 
66 #endif // WAKEFUNCTION_HH
const std::string name
const std::string & getName() const
Definition: WakeFunction.h:38
const unsigned int nBins_m
Definition: WakeFunction.h:43
const std::string name_m
Definition: WakeFunction.h:46
WakeFunction(std::string name, unsigned int n)
Definition: WakeFunction.h:30
virtual void initialize(const ElementBase *)
Definition: WakeFunction.h:35
virtual ~WakeFunction()
Definition: WakeFunction.h:34
virtual void apply(PartBunchBase< double, 3 > *bunch)=0
virtual const std::string getType() const =0
LineDensity(int size=0, double defaultValue=0.0)
Definition: WakeFunction.h:51
void getFirstDerivative(std::vector< double > &firstDerivative, const double &hz)
Definition: WakeFunction.h:55