We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7e5016a commit 988554bCopy full SHA for 988554b
RecoMuon/GlobalTrackingTools/plugins/MuonBeamspotConstraintValueMapProducer.cc
@@ -14,6 +14,7 @@
14
#include "TrackingTools/TransientTrack/interface/TransientTrack.h"
15
#include "RecoVertex/KalmanVertexFit/interface/SingleTrackVertexConstraint.h"
16
#include "DataFormats/VertexReco/interface/Vertex.h"
17
+#include "RecoVertex/VertexPrimitives/interface/VertexException.h"
18
19
class MuonBeamspotConstraintValueMapProducer : public edm::global::EDProducer<> {
20
public:
@@ -95,7 +96,7 @@ class MuonBeamspotConstraintValueMapProducer : public edm::global::EDProducer<>
95
96
chi2s.push_back(std::get<2>(btft));
97
tbd = false;
98
}
- } catch (...) {
99
+ } catch (const VertexException& exc) {
100
// Update failed; give up.
101
102
0 commit comments