1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
|
#include <algorithm>
#include <cmath>
#include <vector>
#include "FWCore/MessageLogger/interface/MessageLogger.h"
#include "FWCore/ParameterSet/interface/ConfigurationDescriptions.h"
#include "DataFormats/BeamSpot/interface/BeamSpot.h"
#include "DataFormats/HLTReco/interface/TriggerFilterObjectWithRefs.h"
#include "DataFormats/RecoCandidate/interface/RecoCandidate.h"
#include "DataFormats/RecoCandidate/interface/RecoChargedCandidate.h"
#include "DataFormats/VertexReco/interface/Vertex.h"
#include "DataFormats/VertexReco/interface/VertexFwd.h"
#include "HLTmumutkFilter.h"
#include "TMath.h"
using namespace edm;
using namespace reco;
using namespace std;
using namespace trigger;
// ----------------------------------------------------------------------
HLTmumutkFilter::HLTmumutkFilter(const edm::ParameterSet& iConfig)
: HLTFilter(iConfig),
muCandTag_(iConfig.getParameter<edm::InputTag>("MuonTag")),
muCandToken_(consumes<reco::RecoChargedCandidateCollection>(muCandTag_)),
trkCandTag_(iConfig.getParameter<edm::InputTag>("TrackTag")),
trkCandToken_(consumes<reco::RecoChargedCandidateCollection>(trkCandTag_)),
MuMuTkVertexTag_(iConfig.getParameter<edm::InputTag>("MuMuTkVertexTag")),
MuMuTkVertexToken_(consumes<reco::VertexCollection>(MuMuTkVertexTag_)),
beamSpotTag_(iConfig.getParameter<edm::InputTag>("BeamSpotTag")),
beamSpotToken_(consumes<reco::BeamSpot>(beamSpotTag_)),
maxEta_(iConfig.getParameter<double>("MaxEta")),
minPt_(iConfig.getParameter<double>("MinPt")),
maxNormalisedChi2_(iConfig.getParameter<double>("MaxNormalisedChi2")),
minVtxProbability_(iConfig.getParameter<double>("MinVtxProbability")),
minLxySignificance_(iConfig.getParameter<double>("MinLxySignificance")),
minCosinePointingAngle_(iConfig.getParameter<double>("MinCosinePointingAngle")) {}
// ----------------------------------------------------------------------
HLTmumutkFilter::~HLTmumutkFilter() = default;
void HLTmumutkFilter::fillDescriptions(edm::ConfigurationDescriptions& descriptions) {
edm::ParameterSetDescription desc;
makeHLTFilterDescription(desc);
desc.add<double>("MaxEta", 2.5);
desc.add<double>("MinPt", 0.0);
desc.add<double>("MaxNormalisedChi2", 10.0);
desc.add<double>("MinVtxProbability", 0.0);
desc.add<double>("MinLxySignificance", 3.0);
desc.add<double>("MinCosinePointingAngle", 0.9);
desc.add<edm::InputTag>("MuonTag", edm::InputTag("hltL3MuonCandidates"));
desc.add<edm::InputTag>("TrackTag", edm::InputTag("hltMumukAllConeTracks"));
desc.add<edm::InputTag>("MuMuTkVertexTag", edm::InputTag("hltDisplacedmumuVtxProducerDoubleMu4Jpsi"));
desc.add<edm::InputTag>("BeamSpotTag", edm::InputTag("hltOnineBeamSpot"));
descriptions.add("HLTmumutkFilter", desc);
}
// ----------------------------------------------------------------------
bool HLTmumutkFilter::hltFilter(edm::Event& iEvent,
const edm::EventSetup& iSetup,
trigger::TriggerFilterObjectWithRefs& filterproduct) const {
//get the beamspot position
edm::Handle<reco::BeamSpot> recoBeamSpotHandle;
iEvent.getByToken(beamSpotToken_, recoBeamSpotHandle);
const reco::BeamSpot& vertexBeamSpot = *recoBeamSpotHandle;
// get vertices
reco::VertexCollection displacedVertexColl;
edm::Handle<reco::VertexCollection> displacedVertexCollHandle;
bool foundVertexColl = iEvent.getByToken(MuMuTkVertexToken_, displacedVertexCollHandle);
if (foundVertexColl)
displacedVertexColl = *displacedVertexCollHandle;
// get muon collection
Handle<RecoChargedCandidateCollection> mucands;
iEvent.getByToken(muCandToken_, mucands);
// get track candidates around displaced muons
Handle<RecoChargedCandidateCollection> trkcands;
iEvent.getByToken(trkCandToken_, trkcands);
// Ref to Candidate object to be recorded in filter object
RecoChargedCandidateRef refMu1;
RecoChargedCandidateRef refMu2;
RecoChargedCandidateRef refTrk;
if (saveTags()) {
filterproduct.addCollectionTag(muCandTag_);
filterproduct.addCollectionTag(trkCandTag_);
}
bool triggered = false;
// loop over vertex collection
reco::VertexCollection::iterator it;
for (it = displacedVertexColl.begin(); it != displacedVertexColl.end(); it++) {
reco::Vertex displacedVertex = *it;
// check if the vertex actually consists of exactly two muon + 1 track, throw exception if not
if (displacedVertex.tracksSize() != 3)
throw cms::Exception("BadLogic") << "HLTmumutkFilter: ERROR: the Jpsi+trk vertex must have "
<< "exactly two muons + 1 trk by definition. It now has n trakcs = "
<< displacedVertex.tracksSize() << std::endl;
float normChi2 = displacedVertex.normalizedChi2();
if (normChi2 > maxNormalisedChi2_)
continue;
double vtxProb = 0.0;
if ((displacedVertex.chi2() >= 0.0) && (displacedVertex.ndof() > 0))
vtxProb = TMath::Prob(displacedVertex.chi2(), displacedVertex.ndof());
if (vtxProb < minVtxProbability_)
continue;
// get the three tracks from the vertex
auto trackIt = displacedVertex.tracks_begin();
reco::TrackRef vertextkRef1 = (*trackIt).castTo<reco::TrackRef>();
trackIt++;
reco::TrackRef vertextkRef2 = (*trackIt).castTo<reco::TrackRef>();
trackIt++;
reco::TrackRef vertextkRef3 = (*trackIt).castTo<reco::TrackRef>();
// first find the two muon tracks in the muon collection
reco::RecoChargedCandidateCollection::const_iterator mucand1;
reco::RecoChargedCandidateCollection::const_iterator mucand2;
reco::RecoChargedCandidateCollection::const_iterator tkcand;
int iFoundRefs = 0;
bool track1Matched = false;
bool track2Matched = false;
bool track3Matched = false;
for (auto cand = mucands->begin(); cand != mucands->end(); cand++) {
reco::TrackRef tkRef = cand->get<reco::TrackRef>();
if (!track1Matched) {
if (tkRef == vertextkRef1 && iFoundRefs == 0) {
mucand1 = cand;
iFoundRefs++;
track1Matched = true;
} else if (tkRef == vertextkRef1 && iFoundRefs == 1) {
mucand2 = cand;
iFoundRefs++;
track1Matched = true;
}
}
if (!track2Matched) {
if (tkRef == vertextkRef2 && iFoundRefs == 0) {
mucand1 = cand;
iFoundRefs++;
track2Matched = true;
} else if (tkRef == vertextkRef2 && iFoundRefs == 1) {
mucand2 = cand;
iFoundRefs++;
track2Matched = true;
}
}
if (!track3Matched) {
if (tkRef == vertextkRef3 && iFoundRefs == 0) {
mucand1 = cand;
iFoundRefs++;
track3Matched = true;
} else if (tkRef == vertextkRef3 && iFoundRefs == 1) {
mucand2 = cand;
iFoundRefs++;
track3Matched = true;
}
}
}
if (iFoundRefs < 2)
throw cms::Exception("BadLogic") << "HLTmumutkFilterr: ERROR: the vertex must have "
<< " at least two muons by definition." << std::endl;
bool notYetFoundTrackRefs(true);
for (auto cand = trkcands->begin(); cand != trkcands->end(); cand++) {
reco::TrackRef tkRef = cand->get<reco::TrackRef>();
if ((tkRef == vertextkRef1 && !track1Matched) || (tkRef == vertextkRef2 && !track2Matched) ||
(tkRef == vertextkRef3 && !track3Matched)) {
notYetFoundTrackRefs = false;
tkcand = cand;
break;
}
}
if (notYetFoundTrackRefs)
throw cms::Exception("BadLogic") << "HLTmumutkFilterr: ERROR: the vertex must have "
<< " at least one track by definition." << std::endl;
// calculate three-track transverse momentum
math::XYZVector pperp(
mucand1->px() + mucand2->px() + tkcand->px(), mucand1->py() + mucand2->py() + tkcand->py(), 0.);
// get vertex position and error to calculate the decay length significance
const reco::Vertex::Point& vpoint = displacedVertex.position();
reco::Vertex::Error verr = displacedVertex.error();
GlobalPoint secondaryVertex(vpoint.x(), vpoint.y(), vpoint.z());
GlobalError err(verr.At(0, 0), verr.At(1, 0), verr.At(1, 1), verr.At(2, 0), verr.At(2, 1), verr.At(2, 2));
GlobalPoint displacementFromBeamspot(-1 * ((vertexBeamSpot.x0() - secondaryVertex.x()) +
(secondaryVertex.z() - vertexBeamSpot.z0()) * vertexBeamSpot.dxdz()),
-1 * ((vertexBeamSpot.y0() - secondaryVertex.y()) +
(secondaryVertex.z() - vertexBeamSpot.z0()) * vertexBeamSpot.dydz()),
0);
float lxy = displacementFromBeamspot.perp();
float lxyerr = sqrt(err.rerr(displacementFromBeamspot));
//calculate the angle between the decay length and the mumu momentum
Vertex::Point vperp(displacementFromBeamspot.x(), displacementFromBeamspot.y(), 0.);
float cosAlpha = vperp.Dot(pperp) / (vperp.R() * pperp.R());
if (pperp.R() < minPt_)
continue;
if (lxy / lxyerr < minLxySignificance_)
continue;
if (cosAlpha < minCosinePointingAngle_)
continue;
triggered = true;
refMu1 = RecoChargedCandidateRef(Ref<RecoChargedCandidateCollection>(mucands, distance(mucands->begin(), mucand1)));
filterproduct.addObject(TriggerMuon, refMu1);
refMu2 = RecoChargedCandidateRef(Ref<RecoChargedCandidateCollection>(mucands, distance(mucands->begin(), mucand2)));
filterproduct.addObject(TriggerMuon, refMu2);
refTrk =
RecoChargedCandidateRef(Ref<RecoChargedCandidateCollection>(trkcands, distance(trkcands->begin(), tkcand)));
filterproduct.addObject(TriggerTrack, refTrk);
} //end loop vertices
LogDebug("HLTDisplacedMumuTrkFilter") << " >>>>> Result of HLTDisplacedMuMuTrkFilter is " << triggered;
return triggered;
}
bool HLTmumutkFilter::triggerdByPreviousLevel(const reco::RecoChargedCandidateRef& candref,
const std::vector<reco::RecoChargedCandidateRef>& vcands) {
unsigned int i = 0;
unsigned int i_max = vcands.size();
for (; i != i_max; ++i) {
if (candref == vcands[i])
return true;
}
return false;
}
|