File tree Expand file tree Collapse file tree 2 files changed +9
-1
lines changed
RecoVertex/KalmanVertexFit Expand file tree Collapse file tree 2 files changed +9
-1
lines changed Original file line number Diff line number Diff line change @@ -27,7 +27,13 @@ class KalmanVertexFitter : public VertexFitter<5> {
2727 * \param useSmoothing Specifies whether the tracks should be refit or not.
2828 */
2929
30- KalmanVertexFitter (bool useSmoothing = false , bool useMuonSystemBounds = false );
30+ KalmanVertexFitter (bool useSmoothing = false );
31+
32+ /* *
33+ * Same as above, including a boolean for extending tracker bounds to muon system
34+ * \param useMuonSystemBounds Specifies whether the tracker bounds should include the muon system or not.
35+ */
36+ KalmanVertexFitter (bool useSmoothing, bool useMuonSystemBounds);
3137
3238 /* *
3339 * Same as above, using a ParameterSet to set the convergence criteria
Original file line number Diff line number Diff line change 77#include " RecoVertex/KalmanVertexFit/interface/KalmanTrackToTrackCovCalculator.h"
88#include " RecoVertex/LinearizationPointFinders/interface/FsmwLinearizationPointFinder.h"
99
10+ KalmanVertexFitter::KalmanVertexFitter (bool useSmoothing) : KalmanVertexFitter(useSmoothing, false ) {}
11+
1012KalmanVertexFitter::KalmanVertexFitter (bool useSmoothing, bool useMuonSystemBounds) {
1113 edm::ParameterSet pSet = defaultParameters ();
1214 setup (pSet, useSmoothing, useMuonSystemBounds);
You can’t perform that action at this time.
0 commit comments