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

small fixes

parent 36416cad
No related branches found
No related tags found
No related merge requests found
......@@ -99,8 +99,8 @@ bool Probe::doCheck(PartBunch_t* bunch, const int turnnumber, const double t, co
// dist1 > 0, right hand, dt > 0; dist1 < 0, left hand, dt < 0
double dist1 = (A_m * bunch->R(i)(0) + B_m * bunch->R(i)(1) + C_m) / R_m; // [m]
double dist2 = dist1 * std::sqrt(1.0 + 1.0 / tangle / tangle);
double dt =
dist2 / (std::sqrt(1.0 - 1.0 / (1.0 + dot(bunch->P(i), bunch->P(i)))) * Physics::c);
//double dt =
// dist2 / (std::sqrt(1.0 - 1.0 / (1.0 + dot(bunch->P(i), bunch->P(i)))) * Physics::c);
// ADA probepoint = bunch->R(i) + dist2 * bunch->P(i) / euclidean_norm(bunch->P(i));
probepoint = bunch->R(i) + dist2 * bunch->P(i) / std::sqrt(dot(bunch->P(i), bunch->P(i)));
......
......@@ -125,7 +125,7 @@ bool Ring::apply(
const double Q = Qview(id);
const double M = Mview(id);
const short int Bin = Binview(id);
// const short int Bin = Binview(id);
gmsgALL << getName() << ": particle " << id << " at " << R
<< " m out of the field map boundary" << endl;
......
499 | int tag = 101;
\ No newline at end of file
......@@ -484,7 +484,7 @@ void H5PartWrapper::copyStepData(h5_file_t source) {
void H5PartWrapper::sendFailureMessage(
bool failed, const std::string& where, const std::string& what) {
int tag = 101;
// int tag = 101;
/* \todo Message* mess = new Message();
putMessage(*mess, failed);
Ippl::Comm->broadcast_all(mess, tag);
......@@ -496,8 +496,8 @@ void H5PartWrapper::sendFailureMessage(
void H5PartWrapper::receiveFailureMessage(
int sourceNode, const std::string& where, const std::string& what) {
int tag = 101;
bool failed;
// int tag = 101;
bool failed=false;
/* \todo
Message* mess = Ippl::Comm->receive_block(sourceNode, tag);
getMessage(*mess, failed);
......
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