Code indexing in gitaly is broken and leads to code not being visible to the user. We work on the issue with highest priority.

Skip to content
Snippets Groups Projects
Commit f5649c19 authored by gsell's avatar gsell
Browse files

missing override added

parent b27c2456
No related branches found
No related tags found
1 merge request!600Resolve "fixes for compilation on macOS"
......@@ -60,15 +60,15 @@ public:
void initializeFields();
void calculatePairForces(PartBunchBase<double, 3> *bunch, double gammaz);
void calculatePairForces(PartBunchBase<double, 3> *bunch, double gammaz) override;
// given a charge-density field rho and a set of mesh spacings hr,
// compute the scalar potential in open space
void computePotential(Field_t &rho, Vector_t hr);
void computePotential(Field_t &rho, Vector_t hr) override;
// given a charge-density field rho and a set of mesh spacings hr,
// compute the scalar potential with image charges at -z
void computePotential(Field_t &rho, Vector_t hr, double zshift);
void computePotential(Field_t &rho, Vector_t hr, double zshift) override;
void greensFunction();
......@@ -76,14 +76,14 @@ public:
void mirrorRhoField();
void test(PartBunchBase<double, 3> */*bunch*/) { }
void test(PartBunchBase<double, 3> */*bunch*/) override {};
double getXRangeMin(unsigned short /*level*/) {return 1.0;}
double getXRangeMax(unsigned short /*level*/) {return 1.0;}
double getYRangeMin(unsigned short /*level*/) {return 1.0;}
double getYRangeMax(unsigned short /*level*/) {return 1.0;}
double getZRangeMin(unsigned short /*level*/) {return 1.0;}
double getZRangeMax(unsigned short /*level*/) {return 1.0;}
double getXRangeMin(unsigned short /*level*/) override {return 1.0;}
double getXRangeMax(unsigned short /*level*/) override {return 1.0;}
double getYRangeMin(unsigned short /*level*/) override {return 1.0;}
double getYRangeMax(unsigned short /*level*/) override {return 1.0;}
double getZRangeMin(unsigned short /*level*/) override {return 1.0;}
double getZRangeMax(unsigned short /*level*/) override {return 1.0;}
double getinteractionRadius() const override {return interaction_radius_m;}
Inform &print(Inform &os) const;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment