17 #ifndef WAKEFUNCTION_HH
18 #define WAKEFUNCTION_HH
25 template <
class T,
unsigned Dim>
37 virtual const std::string
getType()
const = 0;
51 LineDensity(
int size = 0,
double defaultValue = 0.0) :
std::vector<double>(size, defaultValue) {}
56 const size_t size = this->size();
57 if(firstDerivative.size() != size)
58 firstDerivative.resize(size, 0.0);
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;
const std::string & getName() const
const unsigned int nBins_m
WakeFunction(std::string name, unsigned int n)
virtual void initialize(const ElementBase *)
virtual void apply(PartBunchBase< double, 3 > *bunch)=0
virtual const std::string getType() const =0
LineDensity(int size=0, double defaultValue=0.0)
void getFirstDerivative(std::vector< double > &firstDerivative, const double &hz)