Skip to content

Commit

Permalink
review
Browse files Browse the repository at this point in the history
  • Loading branch information
AJPfleger committed Nov 16, 2023
1 parent c14985e commit ab8e680
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -65,12 +65,12 @@ struct GlobalChiSquareFitterFunctionImpl final : public TrackFitterFunction {
Fitter fitter;
DirectFitter directFitter;

bool multipleScattering = false;
bool energyLoss = false;
bool multipleScattering;
bool energyLoss;
Acts::FreeToBoundCorrection freeToBoundCorrection;
std::size_t nUpdateMax = 5;
bool zeroField = false;
double relChi2changeCutOff = 1e-7;
std::size_t nUpdateMax;
bool zeroField;
double relChi2changeCutOff;

IndexSourceLink::SurfaceAccessor m_slSurfaceAccessor;

Expand Down
6 changes: 3 additions & 3 deletions Examples/Python/python/acts/examples/reconstruction.py
Original file line number Diff line number Diff line change
Expand Up @@ -1113,12 +1113,12 @@ def addGx2fTracks(
s: acts.examples.Sequencer,
trackingGeometry: acts.TrackingGeometry,
field: acts.MagneticFieldProvider,
nUpdateMax: int,
zeroField: bool,
relChi2changeCutOff: float,
inputProtoTracks: str = "truth_particle_tracks",
multipleScattering: bool = False,
energyLoss: bool = False,
nUpdateMax: int = 5,
zeroField: bool = False,
relChi2changeCutOff: float = 1e-7,
clusters: str = None,
calibrator: acts.examples.MeasurementCalibrator = acts.examples.makePassThroughCalibrator(),
logLevel: Optional[acts.logging.Level] = None,
Expand Down

0 comments on commit ab8e680

Please sign in to comment.