84 for (
const auto &iterTP : *trackingParticleHandle) {
89 float tmp_tp_pt = iterTP.pt();
90 float tmp_tp_phi = iterTP.phi();
91 float tmp_tp_eta = iterTP.eta();
95 theStubRefs = MCTruthTTStubHandle->findTTStubRefs(tp_ptr);
97 int hasStubInLayer[11] = {0};
98 for (
unsigned int is = 0; is < theStubRefs.size(); is++) {
99 DetId detid(theStubRefs.at(is)->getDetId());
102 layer = static_cast<int>(tTopo->
layer(detid)) - 1;
104 layer = static_cast<int>(tTopo->
layer(detid)) + 5;
107 if (MCTruthTTStubHandle->findTrackingParticlePtr(theStubRefs.at(is)).isNull() && hasStubInLayer[
layer] < 2)
108 hasStubInLayer[
layer] = 1;
110 hasStubInLayer[
layer] = 2;
113 int nStubLayerTP = 0;
115 if (hasStubInLayer[
isum] >= 1)
131 if (MCTruthTTStubHandle.
isValid()) {
133 theStubRefs = MCTruthTTStubHandle->findTTStubRefs(tp_ptr);
134 nStubTP = (
int)theStubRefs.size();
136 if (MCTruthTTClusterHandle.
isValid() && MCTruthTTClusterHandle->findTTClusterRefs(tp_ptr).empty())
139 float tmp_tp_vz = iterTP.vz();
140 float tmp_tp_vx = iterTP.vx();
141 float tmp_tp_vy = iterTP.vy();
142 float tmp_tp_charge = tp_ptr->
charge();
143 int tmp_tp_pdgid = iterTP.pdgId();
148 float tmp_tp_t =
tan(2.0 * atan(1.0) - 2.0 * atan(
exp(-tmp_tp_eta)));
149 float delx = -tmp_tp_vx;
150 float dely = -tmp_tp_vy;
151 float K = 0.01 * 0.5696 / tmp_tp_pt * tmp_tp_charge;
152 float A = 1. / (2. * K);
153 float tmp_tp_x0p = delx -
A *
sin(tmp_tp_phi);
154 float tmp_tp_y0p = dely +
A *
cos(tmp_tp_phi);
155 float tmp_tp_rp =
sqrt(tmp_tp_x0p * tmp_tp_x0p + tmp_tp_y0p * tmp_tp_y0p);
156 static double pi = 4.0 * atan(1.0);
157 float delphi = tmp_tp_phi - atan2(-K * tmp_tp_x0p, K * tmp_tp_y0p);
163 float tmp_tp_VtxZ = tmp_tp_vz + tmp_tp_t * delphi / (2.0 * K);
164 float tmp_tp_VtxR =
sqrt(tmp_tp_vx * tmp_tp_vx + tmp_tp_vy * tmp_tp_vy);
165 float tmp_tp_d0 = tmp_tp_charge * tmp_tp_rp - (1. / (2. * K));
169 float other_d0 = -tmp_tp_vx *
sin(tmp_tp_phi) + tmp_tp_vy *
cos(tmp_tp_phi);
170 tmp_tp_d0 = tmp_tp_d0 * (-1);
172 tmp_tp_d0 = other_d0;
173 tmp_tp_VtxZ = tmp_tp_vz;
179 if (tmp_tp_VtxR < 1.0) {
187 if (tmp_tp_VtxR > 1.0)
200 float i_chi2dof = 99999;
201 if (MCTruthTTTrackHandle.
isValid()) {
202 std::vector<edm::Ptr<TTTrack<Ref_Phase2TrackerDigi_>>> matchedTracks =
203 MCTruthTTTrackHandle->findTTTrackPtrs(tp_ptr);
211 for (
const auto &thisTrack : matchedTracks) {
212 if (!MCTruthTTTrackHandle->isGenuine(thisTrack))
218 int tmp_trk_nstub = thisTrack->getStubRefs().size();
221 float dmatch_pt = 999;
222 float dmatch_eta = 999;
223 float dmatch_phi = 999;
227 dmatch_pt = std::fabs(my_tp->
p4().pt() - tmp_tp_pt);
228 dmatch_eta = std::fabs(my_tp->
p4().eta() - tmp_tp_eta);
229 dmatch_phi = std::fabs(my_tp->
p4().phi() - tmp_tp_phi);
230 match_id = my_tp->
pdgId();
231 float tmp_trk_chi2dof = thisTrack->chi2Red();
234 if (dmatch_pt < 0.1 && dmatch_eta < 0.1 && dmatch_phi < 0.1 && tmp_tp_pdgid == match_id) {
236 if (i_track < 0 || tmp_trk_chi2dof < i_chi2dof) {
237 i_track = trkCounter;
238 i_chi2dof = tmp_trk_chi2dof;
247 float tmp_matchtrk_pt = -999;
248 float tmp_matchtrk_eta = -999;
249 float tmp_matchtrk_phi = -999;
250 float tmp_matchtrk_VtxZ = -999;
251 float tmp_matchtrk_chi2dof = -999;
252 int tmp_matchTrk_nStub = -999;
253 float tmp_matchtrk_d0 = -999;
255 tmp_matchtrk_pt = matchedTracks[i_track]->momentum().perp();
256 tmp_matchtrk_eta = matchedTracks[i_track]->momentum().eta();
257 tmp_matchtrk_phi = matchedTracks[i_track]->momentum().phi();
258 tmp_matchtrk_VtxZ = matchedTracks[i_track]->z0();
259 tmp_matchtrk_chi2dof = matchedTracks[i_track]->chi2Red();
260 tmp_matchTrk_nStub = (
int)matchedTracks[i_track]->getStubRefs().size();
263 float tmp_matchtrk_x0 = matchedTracks[i_track]->POCA().x();
264 float tmp_matchtrk_y0 = matchedTracks[i_track]->POCA().y();
265 tmp_matchtrk_d0 = -tmp_matchtrk_x0 *
sin(tmp_matchtrk_phi) + tmp_matchtrk_y0 *
cos(tmp_matchtrk_phi);
268 if (tmp_matchTrk_nStub < L1Tk_minNStub || tmp_matchtrk_chi2dof >
L1Tk_maxChi2dof)
273 if (tmp_tp_pt > 0 && tmp_tp_pt <= 10)
281 float pt_diff = tmp_matchtrk_pt - tmp_tp_pt;
282 float pt_res = pt_diff / tmp_tp_pt;
283 float eta_res = tmp_matchtrk_eta - tmp_tp_eta;
284 float phi_res = tmp_matchtrk_phi - tmp_tp_phi;
285 float VtxZ_res = tmp_matchtrk_VtxZ - tmp_tp_VtxZ;
286 float d0_res = tmp_matchtrk_d0 - tmp_tp_d0;
295 if (std::fabs(tmp_tp_eta) >= 0 && std::fabs(tmp_tp_eta) < 0.7) {
300 if (tmp_tp_pt >= 2 && tmp_tp_pt < 3)
302 else if (tmp_tp_pt >= 3 && tmp_tp_pt < 8)
304 else if (tmp_tp_pt >= 8)
306 }
else if (std::fabs(tmp_tp_eta) >= 0.7 && std::fabs(tmp_tp_eta) < 1.0) {
311 if (tmp_tp_pt >= 2 && tmp_tp_pt < 3)
313 else if (tmp_tp_pt >= 3 && tmp_tp_pt < 8)
315 else if (tmp_tp_pt >= 8)
317 }
else if (std::fabs(tmp_tp_eta) >= 1.0 && std::fabs(tmp_tp_eta) < 1.2) {
322 if (tmp_tp_pt >= 2 && tmp_tp_pt < 3)
324 else if (tmp_tp_pt >= 3 && tmp_tp_pt < 8)
326 else if (tmp_tp_pt >= 8)
328 }
else if (std::fabs(tmp_tp_eta) >= 1.2 && std::fabs(tmp_tp_eta) < 1.6) {
333 if (tmp_tp_pt >= 2 && tmp_tp_pt < 3)
335 else if (tmp_tp_pt >= 3 && tmp_tp_pt < 8)
337 else if (tmp_tp_pt >= 8)
339 }
else if (std::fabs(tmp_tp_eta) >= 1.6 && std::fabs(tmp_tp_eta) < 2.0) {
344 if (tmp_tp_pt >= 2 && tmp_tp_pt < 3)
346 else if (tmp_tp_pt >= 3 && tmp_tp_pt < 8)
348 else if (tmp_tp_pt >= 8)
350 }
else if (std::fabs(tmp_tp_eta) >= 2.0 && std::fabs(tmp_tp_eta) <= 2.4) {
355 if (tmp_tp_pt >= 2 && tmp_tp_pt < 3)
357 else if (tmp_tp_pt >= 3 && tmp_tp_pt < 8)
359 else if (tmp_tp_pt >= 8)
787 HistoName =
"respt_eta1p2to1p6_pt8toInf";
MonitorElement * resd0_eta1to1p2
MonitorElement * match_tp_d0
MonitorElement * match_tp_VtxR
T getParameter(std::string const &) const
MonitorElement * respt_eta2to2p4_pt8toInf
MonitorElement * resVtxZ_eta1to1p2
void bookHistograms(DQMStore::IBooker &, edm::Run const &, edm::EventSetup const &) override
MonitorElement * resVtxZ_eta1p6to2
T const & getData(const ESGetToken< T, R > &iToken) const noexcept(false)
virtual void setCurrentFolder(std::string const &fullpath)
MonitorElement * trackParts_Phi
MonitorElement * match_tp_pt
MonitorElement * trackParts_Pt
Sin< T >::type sin(const T &t)
MonitorElement * respt_eta1p6to2_pt3to8
MonitorElement * match_tp_eta
MonitorElement * reseta_eta1p6to2
~OuterTrackerMonitorTrackingParticles() override
MonitorElement * resd0_eta1p6to2
MonitorElement * reseta_eta1to1p2
unsigned int layer(const DetId &id) const
edm::EDGetTokenT< std::vector< TrackingParticle > > trackingParticleToken_
MonitorElement * match_tp_VtxZ
MonitorElement * tp_pt_zoom
MonitorElement * respt_eta0to0p7_pt3to8
MonitorElement * resphi_eta0to0p7
MonitorElement * reseta_eta2to2p4
edm::EDGetTokenT< TTTrackAssociationMap< Ref_Phase2TrackerDigi_ > > ttTrackMCTruthToken_
MonitorElement * respt_eta1to1p2_pt3to8
MonitorElement * respt_eta1to1p2_pt8toInf
Cos< T >::type cos(const T &t)
MonitorElement * resd0_eta1p2to1p6
Tan< T >::type tan(const T &t)
MonitorElement * respt_eta1p2to1p6_pt2to3
#define DEFINE_FWK_MODULE(type)
edm::EDGetTokenT< TTClusterAssociationMap< Ref_Phase2TrackerDigi_ > > ttClusterMCTruthToken_
MonitorElement * reseta_eta1p2to1p6
MonitorElement * resphi_eta0p7to1
MonitorElement * respt_eta0p7to1_pt8toInf
static constexpr auto TOB
MonitorElement * resd0_eta2to2p4
MonitorElement * resVtxZ_eta0p7to1
MonitorElement * resphi_eta2to2p4
Class to store the L1 Track Trigger stubs.
MonitorElement * match_tp_pt_zoom
MonitorElement * resVtxZ_eta2to2p4
MonitorElement * respt_eta0p7to1_pt3to8
MonitorElement * respt_eta2to2p4_pt2to3
MonitorElement * resVtxZ_eta0to0p7
edm::EDGetTokenT< TTStubAssociationMap< Ref_Phase2TrackerDigi_ > > ttStubMCTruthToken_
MonitorElement * respt_eta1p2to1p6_pt8toInf
MonitorElement * respt_eta1p6to2_pt2to3
MonitorElement * resphi_eta1p2to1p6
MonitorElement * reseta_eta0to0p7
MonitorElement * respt_eta0p7to1_pt2to3
MonitorElement * reseta_eta0p7to1
MonitorElement * resVtxZ_eta1p2to1p6
const edm::ESGetToken< TrackerTopology, TrackerTopologyRcd > m_topoToken
const LorentzVector & p4() const
Four-momentum Lorentz vector. Note this is taken from the first SimTrack only.
std::string topFolderName_
void analyze(const edm::Event &, const edm::EventSetup &) override
MonitorElement * respt_eta0to0p7_pt2to3
MonitorElement * respt_eta1p6to2_pt8toInf
MonitorElement * respt_eta2to2p4_pt3to8
MonitorElement * resd0_eta0p7to1
MonitorElement * respt_eta1to1p2_pt2to3
OuterTrackerMonitorTrackingParticles(const edm::ParameterSet &)
MonitorElement * book1D(TString const &name, TString const &title, int const nchX, double const lowX, double const highX, FUNC onbooking=NOOP())
MonitorElement * resphi_eta1to1p2
static constexpr auto TID
MonitorElement * respt_eta1p2to1p6_pt3to8
MonitorElement * resphi_eta1p6to2
MonitorElement * respt_eta0to0p7_pt8toInf
float charge() const
Electric charge. Note this is taken from the first SimTrack only.
MonitorElement * res_ptRel
MonitorElement * trackParts_Eta
MonitorElement * resd0_eta0to0p7
virtual void setAxisTitle(const std::string &title, int axis=1)
set x-, y- or z-axis title (axis=1, 2, 3 respectively)