Skip to content

Commit

Permalink
TrackParamTruthInitConfig: maxEtaForward=10 for B0 coverage
Browse files Browse the repository at this point in the history
We should cover down to 5.5 mrad.
The new value eta=10 covers that:
```
>>> import numpy as np
>>> np.rad2deg(2*np.arctan(np.exp(-10)))
0.005202448727587163
```
  • Loading branch information
veprbl authored Nov 2, 2024
1 parent 6a948d5 commit e5c8d4e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/algorithms/tracking/TrackParamTruthInitConfig.h
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ struct TrackParamTruthInitConfig {
double maxVertexY = 80 * dd4hep::mm;
double maxVertexZ = 200 * dd4hep::mm;
double minMomentum = 100 * dd4hep::MeV;
double maxEtaForward = 6.0;
double maxEtaForward = 10.0;
double maxEtaBackward = 4.1;
double momentumSmear = 0.1;

Expand Down

0 comments on commit e5c8d4e

Please sign in to comment.