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 92eeff82 authored by adelmann's avatar adelmann :reminder_ribbon:
Browse files

fix reorder and always return values in functions

parent 97d1e56c
No related branches found
No related tags found
No related merge requests found
......@@ -161,12 +161,6 @@ private:
/// steps per turn for OPAL-cycl
int stepsPerTurn_m;
/// step in a TRACK command
long long localTrackStep_m;
/// if multiple TRACK commands
long long globalTrackStep_m;
/// current bunch number
short numBunch_m;
......@@ -188,6 +182,12 @@ private:
double mi_m;
double rmsDensity_m;
/// step in a TRACK command
long long localTrackStep_m;
/// if multiple TRACK commands
long long globalTrackStep_m;
// unit state of PartBunch
// UnitState_t unit_state_m;
// UnitState_t stateOfLastBoundP_m;
......@@ -449,6 +449,7 @@ public:
bool isGridFixed() {
return false;
}
void boundp() {
......@@ -528,15 +529,19 @@ public:
void setEnergyBins(int numberOfEnergyBins) {
}
bool weHaveEnergyBins() {
return false;
}
void setTEmission(double t) {
}
double getTEmission() {
return 0.0;
}
bool weHaveBins() {
return false;
}
// void setPBins(PartBins* pbin) {}
size_t emitParticles(double eZ) {
return 0;
}
void updateNumTotal() {
}
......@@ -551,6 +556,7 @@ public:
double getBinGamma(int bin) {
}
bool hasBinning() {
return false;
}
void setBinCharge(int bin, double q) {
}
......@@ -559,6 +565,7 @@ public:
double calcMeanPhi() {
}
bool resetPartBinID2(const double eta) {
return false;
}
bool resetPartBinBunch() {
}
......
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