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 f3d1060a authored by ext-calvo_p's avatar ext-calvo_p
Browse files

Merge branch '643-remove-unnecessary-condition-in-ccollimators' into 'master'

Resolve "Remove unnecessary condition in CCollimators"

Closes #643

See merge request !483
parents 7943d7e0 8cd63ddd
No related branches found
No related tags found
1 merge request!483Resolve "Remove unnecessary condition in CCollimators"
......@@ -82,16 +82,17 @@ bool CCollimator::doCheck(PartBunchBase<double, 3> *bunch, const int turnnumber,
int pflag = 0;
// now check each particle in bunch
for (unsigned int i = 0; i < tempnum; ++i) {
if (bunch->POrigin[i] == ParticleOrigin::REGULAR && bunch->R[i](2) < zend_m && bunch->R[i](2) > zstart_m ) {
if (bunch->R[i](2) < zend_m && bunch->R[i](2) > zstart_m ) {
// only now careful check in r
pflag = checkPoint(bunch->R[i](0), bunch->R[i](1));
/// bunch->Bin[i] != -1 makes sure the particle is not stored in more than one collimator
if ((pflag != 0) && (bunch->Bin[i] != -1)) {
if (!parmatint_m)
if (!parmatint_m) {
lossDs_m->addParticle(OpalParticle(bunch->ID[i],
bunch->R[i], bunch->P[i],
t, bunch->Q[i], bunch->M[i]),
std::make_pair(turnnumber, bunch->bunchNum[i]));
}
bunch->Bin[i] = -1;
flagNeedUpdate = true;
}
......@@ -148,7 +149,7 @@ void CCollimator::setDimensions(double xstart, double xend, double ystart, doubl
zend_m = zend;
width_m = width;
// zstart and zend are independent from x, y
if (zstart_m > zend_m){
if (zstart_m > zend_m) {
std::swap(zstart_m, zend_m);
}
setGeom(width_m);
......
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