Skip to content
This repository has been archived by the owner on May 18, 2023. It is now read-only.

Commit

Permalink
Merge pull request #494 from JeffersonLab/hipo4-richDev
Browse files Browse the repository at this point in the history
fix ray-trace matching resolution
  • Loading branch information
raffaelladevita authored Mar 5, 2020
2 parents 1a035ec + aba4561 commit 619e027
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -735,7 +735,7 @@ public void find_EtaC_raytrace_steps(RICHParticle hadron, RICHTool tool) {
double EtaCmin = 0.0;
if(Math.abs(Cos_EtaC)<1.)EtaCmin = Math.acos(Cos_EtaC);
int ntrials = 0;
while (dist > nominal_sChAngle()*100/2. && ntrials<20){
while (dist > nominal_sChAngle()*100/10. && ntrials<20){

if(debugMode>=1){
System.out.format(" Attempt %d with the %7.1f (%7.2f) phi %7.2f EtaC %7.2f\n",ntrials, the_min*MRAD, the_min*RAD, phi_min*RAD, EtaCmin*MRAD);
Expand Down

0 comments on commit 619e027

Please sign in to comment.