Skip to content

Commit

Permalink
changes
Browse files Browse the repository at this point in the history
  • Loading branch information
cvarni committed Oct 7, 2024
1 parent d7ded89 commit 7a01fc3
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -91,8 +91,10 @@ struct CylindricalSpacePointGridConfig {

if (phiMin < -M_PI || phiMax > M_PI) {
throw std::runtime_error(
"CylindricalSpacePointGridConfig: phiMin and/or phiMax are outside "
"the allowed phi range, defined as [-M_PI, M_PI]");
"CylindricalSpacePointGridConfig: phiMin ("
<< phiMin << ") and/or phiMax (" << phiMax
<< ") are outside "
"the allowed phi range, defined as [-M_PI, M_PI]");
}
if (phiMin > phiMax) {
throw std::runtime_error(
Expand Down
5 changes: 3 additions & 2 deletions Examples/Scripts/Python/full_chain_odd.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
import os
import argparse
import pathlib
import math

import acts
import acts.examples
Expand Down Expand Up @@ -412,8 +413,8 @@
maxSharedTracksPerMeasurement=2,
pTMax=1400,
pTMin=0.5,
phiMax=3.14,
phiMin=-3.14,
phiMax=math.pi,
phiMin=-math.pi,
etaMax=4,
etaMin=-4,
useAmbiguityFunction=False,
Expand Down

0 comments on commit 7a01fc3

Please sign in to comment.