|
@@ -1,7 +1,9 @@
|
|
#include <iostream>
|
|
#include <iostream>
|
|
#include <vector>
|
|
#include <vector>
|
|
#include <cmath>
|
|
#include <cmath>
|
|
|
|
+#include <numeric>
|
|
#include <TSystem.h>
|
|
#include <TSystem.h>
|
|
|
|
+#include <Math/VectorUtil.h>
|
|
|
|
|
|
#include "filval.hpp"
|
|
#include "filval.hpp"
|
|
#include "root_filval.hpp"
|
|
#include "root_filval.hpp"
|
|
@@ -9,6 +11,8 @@
|
|
|
|
|
|
#include "analysis/TrackingNtupleObjs.hpp"
|
|
#include "analysis/TrackingNtupleObjs.hpp"
|
|
|
|
|
|
|
|
+typedef ROOT::Math::LorentzVector<ROOT::Math::PxPyPzE4D<float>> Vec4;
|
|
|
|
+
|
|
SeedCollection seeds;
|
|
SeedCollection seeds;
|
|
SimTrackCollection sim_tracks;
|
|
SimTrackCollection sim_tracks;
|
|
SimVertexCollection sim_vertices;
|
|
SimVertexCollection sim_vertices;
|
|
@@ -39,7 +43,6 @@ struct KinColl {
|
|
T* phi;
|
|
T* phi;
|
|
};
|
|
};
|
|
|
|
|
|
-
|
|
|
|
bool in_lum_region(const SimVertex& vertex) {
|
|
bool in_lum_region(const SimVertex& vertex) {
|
|
/* Here approximate the luminous region as a cylinder with length 5*\sigma_z and radius
|
|
/* Here approximate the luminous region as a cylinder with length 5*\sigma_z and radius
|
|
* sqrt(\simga_x^2 + \sigma_y^2) centered as beamspot position.
|
|
* sqrt(\simga_x^2 + \sigma_y^2) centered as beamspot position.
|
|
@@ -54,7 +57,9 @@ bool in_lum_region(const SimVertex& vertex) {
|
|
|
|
|
|
bool is_good_sim(const SimTrack& sim_track) {
|
|
bool is_good_sim(const SimTrack& sim_track) {
|
|
const auto& vertex = sim_vertices[sim_track.parentVtxIdx()];
|
|
const auto& vertex = sim_vertices[sim_track.parentVtxIdx()];
|
|
- return abs(sim_track.pdgId()) == 11 and in_lum_region(vertex);
|
|
|
|
|
|
+ return abs(sim_track.pdgId()) == 11 and // electrons
|
|
|
|
+ in_lum_region(vertex) and // from luminous region
|
|
|
|
+ abs(sim_track.eta())<3.0; // inside ECAL acceptance
|
|
};
|
|
};
|
|
|
|
|
|
//bool is_good_fake(const SimTrack& sim_track) {
|
|
//bool is_good_fake(const SimTrack& sim_track) {
|
|
@@ -79,11 +84,82 @@ bool reco_energy_consistent(const SimTrack& sim_track, const TrackOrSeed& track,
|
|
return fabs(reco_energy_rel_err(sim_track, track)) < consistency_cut;
|
|
return fabs(reco_energy_rel_err(sim_track, track)) < consistency_cut;
|
|
}
|
|
}
|
|
|
|
|
|
|
|
+Vec4 scl_p4(const SuperCluster& scl) {
|
|
|
|
+ return Vec4(scl.px(), scl.py(), scl.pz(), scl.e());
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+double deltaR(float scl_eta, float scl_phi, const SimTrack& sim_track) {
|
|
|
|
+ return sqrt(pow(sim_track.eta() - scl_eta, 2.0) +
|
|
|
|
+ pow(sim_track.phi() - scl_phi, 2.0));
|
|
|
|
+}
|
|
|
|
+
|
|
double deltaR(const SimTrack& sim_track, const Track& gsf_track) {
|
|
double deltaR(const SimTrack& sim_track, const Track& gsf_track) {
|
|
return sqrt(pow(sim_track.eta() - gsf_track.eta(), 2.0) +
|
|
return sqrt(pow(sim_track.eta() - gsf_track.eta(), 2.0) +
|
|
pow(sim_track.phi() - gsf_track.phi(), 2.0));
|
|
pow(sim_track.phi() - gsf_track.phi(), 2.0));
|
|
}
|
|
}
|
|
|
|
|
|
|
|
+
|
|
|
|
+auto get_match_stats(bool dRMatch) {
|
|
|
|
+ int nSimTrack = 0;
|
|
|
|
+ int nGSFTrack = 0;
|
|
|
|
+ int nMatched = 0; // 1-to-1
|
|
|
|
+ int nMerged = 0; // n-to-1
|
|
|
|
+ int nLost = 0; // 1-to-0
|
|
|
|
+ int nSplit = 0; // 1-to-n
|
|
|
|
+ int nFaked = 0; // 0-to-1
|
|
|
|
+ int nFlipped = 0;
|
|
|
|
+ vector<float> matched_dR;
|
|
|
|
+ vector<float> matched_dpT;
|
|
|
|
+ std::map<int, std::vector<int>> sim_matches;
|
|
|
|
+ std::map<int, std::vector<int>> gsf_matches;
|
|
|
|
+ for(const auto& sim_track : sim_tracks)
|
|
|
|
+ if (is_good_sim(sim_track)) sim_matches[sim_track.idx] = {};
|
|
|
|
+ for(const auto& gsf_track : gsf_tracks)
|
|
|
|
+ gsf_matches[gsf_track.idx] = {};
|
|
|
|
+
|
|
|
|
+ nSimTrack = sim_matches.size();
|
|
|
|
+ nGSFTrack = gsf_matches.size();
|
|
|
|
+
|
|
|
|
+ for (const auto& sim_track : sim_tracks) {
|
|
|
|
+ if (!is_good_sim(sim_track)) continue;
|
|
|
|
+ if (dRMatch) {
|
|
|
|
+ for (const auto& gsf_track : gsf_tracks) {
|
|
|
|
+ float dR = deltaR(sim_track, gsf_track);
|
|
|
|
+ if (dR < 0.2) {
|
|
|
|
+ sim_matches[sim_track.idx].push_back(gsf_track.idx);
|
|
|
|
+ gsf_matches[gsf_track.idx].push_back(sim_track.idx);
|
|
|
|
+ matched_dR.push_back(dR);
|
|
|
|
+ matched_dpT.push_back((sim_track.pt() - gsf_track.pt())/sim_track.pt());
|
|
|
|
+ if (gsf_track.q() != sim_track.q()) nFlipped++;
|
|
|
|
+ }
|
|
|
|
+ }
|
|
|
|
+ } else {
|
|
|
|
+ for (const auto& gsfIdx : sim_track.trkIdx()) {
|
|
|
|
+ const Track& gsf_track = gsf_tracks[gsfIdx];
|
|
|
|
+ float dR = deltaR(sim_track, gsf_track);
|
|
|
|
+ sim_matches[sim_track.idx].push_back(gsf_track.idx);
|
|
|
|
+ gsf_matches[gsf_track.idx].push_back(sim_track.idx);
|
|
|
|
+ matched_dR.push_back(dR);
|
|
|
|
+ matched_dpT.push_back((sim_track.pt() - gsf_track.pt())/sim_track.pt());
|
|
|
|
+ if (gsf_track.q() != sim_track.q()) nFlipped++;
|
|
|
|
+ }
|
|
|
|
+ }
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ for (const auto& p : sim_matches) {
|
|
|
|
+ const auto& matches = p.second;
|
|
|
|
+ if (matches.size() == 0) nLost++;
|
|
|
|
+ if (matches.size() == 1 and gsf_matches[matches[0]].size() == 1) nMatched++;
|
|
|
|
+ if (matches.size() > 1) nSplit++;
|
|
|
|
+ }
|
|
|
|
+ for (const auto& p : gsf_matches) {
|
|
|
|
+ const auto& matches = p.second;
|
|
|
|
+ if (matches.size() == 0) nFaked++;
|
|
|
|
+ if (matches.size() > 1) nMerged++;
|
|
|
|
+ }
|
|
|
|
+ return std::make_tuple(nSimTrack, nGSFTrack, nMatched, nMerged, nLost, nSplit, nFaked, nFlipped, matched_dR, matched_dpT);
|
|
|
|
+}
|
|
|
|
+
|
|
void run(){
|
|
void run(){
|
|
using namespace std;
|
|
using namespace std;
|
|
using namespace fv;
|
|
using namespace fv;
|
|
@@ -216,35 +292,45 @@ void run(){
|
|
}
|
|
}
|
|
|
|
|
|
KinColl<EfficiencyContainer<float>> seed_eff = {
|
|
KinColl<EfficiencyContainer<float>> seed_eff = {
|
|
- tds.register_container<EfficiencyContainer<float>>("seed_eff_v_pt", THParams::lookup("eff_v_pt")),
|
|
|
|
- tds.register_container<EfficiencyContainer<float>>("seed_eff_v_eta", THParams::lookup("eff_v_eta")),
|
|
|
|
- tds.register_container<EfficiencyContainer<float>>("seed_eff_v_phi", THParams::lookup("eff_v_phi"))};
|
|
|
|
|
|
+ tds.register_container<EfficiencyContainer<float>>("seed_eff_v_pt", THParams::lookup("pt")),
|
|
|
|
+ tds.register_container<EfficiencyContainer<float>>("seed_eff_v_eta", THParams::lookup("eta")),
|
|
|
|
+ tds.register_container<EfficiencyContainer<float>>("seed_eff_v_phi", THParams::lookup("phi"))};
|
|
KinColl<EfficiencyContainer<float>> seed_pur = {
|
|
KinColl<EfficiencyContainer<float>> seed_pur = {
|
|
- tds.register_container<EfficiencyContainer<float>>("seed_pur_v_pt", THParams::lookup("pur_v_pt")),
|
|
|
|
- tds.register_container<EfficiencyContainer<float>>("seed_pur_v_eta", THParams::lookup("pur_v_eta")),
|
|
|
|
- tds.register_container<EfficiencyContainer<float>>("seed_pur_v_phi", THParams::lookup("pur_v_phi"))};
|
|
|
|
|
|
+ tds.register_container<EfficiencyContainer<float>>("seed_pur_v_pt", THParams::lookup("pt")),
|
|
|
|
+ tds.register_container<EfficiencyContainer<float>>("seed_pur_v_eta", THParams::lookup("eta")),
|
|
|
|
+ tds.register_container<EfficiencyContainer<float>>("seed_pur_v_phi", THParams::lookup("phi"))};
|
|
KinColl<EfficiencyContainer<float>> tracking_eff = {
|
|
KinColl<EfficiencyContainer<float>> tracking_eff = {
|
|
- tds.register_container<EfficiencyContainer<float>>("tracking_eff_v_pt", THParams::lookup("eff_v_pt")),
|
|
|
|
- tds.register_container<EfficiencyContainer<float>>("tracking_eff_v_eta", THParams::lookup("eff_v_eta")),
|
|
|
|
- tds.register_container<EfficiencyContainer<float>>("tracking_eff_v_phi", THParams::lookup("eff_v_phi"))};
|
|
|
|
|
|
+ tds.register_container<EfficiencyContainer<float>>("tracking_eff_v_pt", THParams::lookup("pt")),
|
|
|
|
+ tds.register_container<EfficiencyContainer<float>>("tracking_eff_v_eta", THParams::lookup("eta")),
|
|
|
|
+ tds.register_container<EfficiencyContainer<float>>("tracking_eff_v_phi", THParams::lookup("phi"))};
|
|
KinColl<EfficiencyContainer<float>> tracking_pur = {
|
|
KinColl<EfficiencyContainer<float>> tracking_pur = {
|
|
- tds.register_container<EfficiencyContainer<float>>("tracking_pur_v_pt", THParams::lookup("pur_v_pt")),
|
|
|
|
- tds.register_container<EfficiencyContainer<float>>("tracking_pur_v_eta", THParams::lookup("pur_v_eta")),
|
|
|
|
- tds.register_container<EfficiencyContainer<float>>("tracking_pur_v_phi", THParams::lookup("pur_v_phi"))};
|
|
|
|
|
|
+ tds.register_container<EfficiencyContainer<float>>("tracking_pur_v_pt", THParams::lookup("pt")),
|
|
|
|
+ tds.register_container<EfficiencyContainer<float>>("tracking_pur_v_eta", THParams::lookup("eta")),
|
|
|
|
+ tds.register_container<EfficiencyContainer<float>>("tracking_pur_v_phi", THParams::lookup("phi"))};
|
|
|
|
|
|
KinColl<EfficiencyContainer<float>> tracking_eff_dR = {
|
|
KinColl<EfficiencyContainer<float>> tracking_eff_dR = {
|
|
- tds.register_container<EfficiencyContainer<float>>("tracking_eff_v_pt_dR", THParams::lookup("eff_v_pt")),
|
|
|
|
- tds.register_container<EfficiencyContainer<float>>("tracking_eff_v_eta_dR", THParams::lookup("eff_v_eta")),
|
|
|
|
- tds.register_container<EfficiencyContainer<float>>("tracking_eff_v_phi_dR", THParams::lookup("eff_v_phi"))};
|
|
|
|
|
|
+ tds.register_container<EfficiencyContainer<float>>("tracking_eff_v_pt_dR", THParams::lookup("pt")),
|
|
|
|
+ tds.register_container<EfficiencyContainer<float>>("tracking_eff_v_eta_dR", THParams::lookup("eta")),
|
|
|
|
+ tds.register_container<EfficiencyContainer<float>>("tracking_eff_v_phi_dR", THParams::lookup("phi"))};
|
|
KinColl<EfficiencyContainer<float>> tracking_pur_dR = {
|
|
KinColl<EfficiencyContainer<float>> tracking_pur_dR = {
|
|
- tds.register_container<EfficiencyContainer<float>>("tracking_pur_v_pt_dR", THParams::lookup("pur_v_pt")),
|
|
|
|
- tds.register_container<EfficiencyContainer<float>>("tracking_pur_v_eta_dR", THParams::lookup("pur_v_eta")),
|
|
|
|
- tds.register_container<EfficiencyContainer<float>>("tracking_pur_v_phi_dR", THParams::lookup("pur_v_phi"))};
|
|
|
|
|
|
+ tds.register_container<EfficiencyContainer<float>>("tracking_pur_v_pt_dR", THParams::lookup("pt")),
|
|
|
|
+ tds.register_container<EfficiencyContainer<float>>("tracking_pur_v_eta_dR", THParams::lookup("eta")),
|
|
|
|
+ tds.register_container<EfficiencyContainer<float>>("tracking_pur_v_phi_dR", THParams::lookup("phi"))};
|
|
|
|
|
|
- KinColl<EfficiencyContainer<float>> fake_rate = {
|
|
|
|
- tds.register_container<EfficiencyContainer<float>>("fake_rate_v_pt", THParams::lookup("eff_v_pt")),
|
|
|
|
- tds.register_container<EfficiencyContainer<float>>("fake_rate_v_eta", THParams::lookup("eff_v_eta")),
|
|
|
|
- tds.register_container<EfficiencyContainer<float>>("fake_rate_v_phi", THParams::lookup("pur_v_phi"))};
|
|
|
|
|
|
+ KinColl<EfficiencyContainer<float>> partial_fake_rate = {
|
|
|
|
+ tds.register_container<EfficiencyContainer<float>>("partial_fake_rate_v_pt", THParams::lookup("pt")),
|
|
|
|
+ tds.register_container<EfficiencyContainer<float>>("partial_fake_rate_v_eta", THParams::lookup("eta")),
|
|
|
|
+ tds.register_container<EfficiencyContainer<float>>("partial_fake_rate_v_phi", THParams::lookup("phi"))};
|
|
|
|
+
|
|
|
|
+ KinColl<EfficiencyContainer<float>> full_fake_rate = {
|
|
|
|
+ tds.register_container<EfficiencyContainer<float>>("full_fake_rate_v_pt", THParams::lookup("pt")),
|
|
|
|
+ tds.register_container<EfficiencyContainer<float>>("full_fake_rate_v_eta", THParams::lookup("eta")),
|
|
|
|
+ tds.register_container<EfficiencyContainer<float>>("full_fake_rate_v_phi", THParams::lookup("phi"))};
|
|
|
|
+
|
|
|
|
+ KinColl<EfficiencyContainer<float>> clean_fake_rate = {
|
|
|
|
+ tds.register_container<EfficiencyContainer<float>>("clean_fake_rate_v_pt", THParams::lookup("pt")),
|
|
|
|
+ tds.register_container<EfficiencyContainer<float>>("clean_fake_rate_v_eta", THParams::lookup("eta")),
|
|
|
|
+ tds.register_container<EfficiencyContainer<float>>("clean_fake_rate_v_phi", THParams::lookup("phi"))};
|
|
|
|
|
|
auto& hit_vs_layer_barrel = *tds.register_container<ContainerTH2<int>>("hit_vs_layer_barrel", THParams::lookup("hit_vs_layer"));
|
|
auto& hit_vs_layer_barrel = *tds.register_container<ContainerTH2<int>>("hit_vs_layer_barrel", THParams::lookup("hit_vs_layer"));
|
|
auto& hit_vs_layer_forward = *tds.register_container<ContainerTH2<int>>("hit_vs_layer_forward", THParams::lookup("hit_vs_layer"));
|
|
auto& hit_vs_layer_forward = *tds.register_container<ContainerTH2<int>>("hit_vs_layer_forward", THParams::lookup("hit_vs_layer"));
|
|
@@ -255,9 +341,75 @@ void run(){
|
|
auto& ecal_energy_resolution = *tds.register_container<ContainerTH1<float>>("ecal_energy_resolution ", THParams::lookup("ecal_energy_resolution"));
|
|
auto& ecal_energy_resolution = *tds.register_container<ContainerTH1<float>>("ecal_energy_resolution ", THParams::lookup("ecal_energy_resolution"));
|
|
|
|
|
|
auto& n_seeds = *tds.register_container<ContainerTH1<size_t>>("n_seeds", THParams::lookup("n_seeds"));
|
|
auto& n_seeds = *tds.register_container<ContainerTH1<size_t>>("n_seeds", THParams::lookup("n_seeds"));
|
|
|
|
+ auto& n_good_sim = *tds.register_container<ContainerTH1<int>>("n_good_sim", THParams::lookup("n_seeds"));
|
|
|
|
+ auto& n_gsf_tracks = *tds.register_container<ContainerTH1<int>>("n_gsf_track", THParams::lookup("n_seeds"));
|
|
|
|
+
|
|
|
|
+ auto& n_matched = *tds.register_container<ContainerTH1<int>>("n_matched", THParams::lookup("n_seeds"));
|
|
|
|
+ auto& n_merged = *tds.register_container<ContainerTH1<int>>("n_merged", THParams::lookup("n_seeds"));
|
|
|
|
+ auto& n_lost = *tds.register_container<ContainerTH1<int>>("n_lost", THParams::lookup("n_seeds"));
|
|
|
|
+ auto& n_split = *tds.register_container<ContainerTH1<int>>("n_split", THParams::lookup("n_seeds"));
|
|
|
|
+ auto& n_faked = *tds.register_container<ContainerTH1<int>>("n_faked", THParams::lookup("n_seeds"));
|
|
|
|
+ auto& n_flipped = *tds.register_container<ContainerTH1<int>>("n_flipped", THParams::lookup("n_seeds"));
|
|
|
|
+
|
|
|
|
+ auto& matched_dR = *tds.register_container<ContainerTH1<float>>("matched_dR", THParams::lookup("matched_dR"));
|
|
|
|
+ auto& matched_dpT = *tds.register_container<ContainerTH1<float>>("matched_dpT", THParams::lookup("matched_dpT"));
|
|
|
|
+
|
|
|
|
+ auto& n_matched_dR = *tds.register_container<ContainerTH1<int>>("n_matched_dR", THParams::lookup("n_seeds"));
|
|
|
|
+ auto& n_merged_dR = *tds.register_container<ContainerTH1<int>>("n_merged_dR", THParams::lookup("n_seeds"));
|
|
|
|
+ auto& n_lost_dR = *tds.register_container<ContainerTH1<int>>("n_lost_dR", THParams::lookup("n_seeds"));
|
|
|
|
+ auto& n_split_dR = *tds.register_container<ContainerTH1<int>>("n_split_dR", THParams::lookup("n_seeds"));
|
|
|
|
+ auto& n_faked_dR = *tds.register_container<ContainerTH1<int>>("n_faked_dR", THParams::lookup("n_seeds"));
|
|
|
|
+ auto& n_flipped_dR = *tds.register_container<ContainerTH1<int>>("n_flipped_dR", THParams::lookup("n_seeds"));
|
|
|
|
+
|
|
|
|
+ auto& matched_dR_dR = *tds.register_container<ContainerTH1<float>>("matched_dR_dR", THParams::lookup("matched_dR"));
|
|
|
|
+ auto& matched_dpT_dR = *tds.register_container<ContainerTH1<float>>("matched_dpT_dR", THParams::lookup("matched_dpT"));
|
|
|
|
+
|
|
|
|
+ auto& sim_pt = *tds.register_container<ContainerTH1<float>>("sim_pt", THParams::lookup("pt_fine"));
|
|
|
|
+ auto& sim_eta = *tds.register_container<ContainerTH1<float>>("sim_eta", THParams::lookup("eta_fine"));
|
|
|
|
+ auto& sim_phi = *tds.register_container<ContainerTH1<float>>("sim_phi", THParams::lookup("phi_fine"));
|
|
|
|
+
|
|
|
|
+ auto& reco_pt = *tds.register_container<ContainerTH1<float>>("reco_pt", THParams::lookup("pt_fine"));
|
|
|
|
+ auto& reco_eta = *tds.register_container<ContainerTH1<float>>("reco_eta", THParams::lookup("eta_fine"));
|
|
|
|
+ auto& reco_phi = *tds.register_container<ContainerTH1<float>>("reco_phi", THParams::lookup("phi_fine"));
|
|
|
|
|
|
while (tds.next()) {
|
|
while (tds.next()) {
|
|
|
|
|
|
|
|
+ n_seeds.fill(seeds.size());
|
|
|
|
+ auto match_stats = get_match_stats(false);
|
|
|
|
+ n_good_sim.fill(std::get<0>(match_stats));
|
|
|
|
+ n_gsf_tracks.fill(std::get<1>(match_stats));
|
|
|
|
+ n_matched.fill(std::get<2>(match_stats));
|
|
|
|
+ n_merged.fill(std::get<3>(match_stats));
|
|
|
|
+ n_lost.fill(std::get<4>(match_stats));
|
|
|
|
+ n_split.fill(std::get<5>(match_stats));
|
|
|
|
+ n_faked.fill(std::get<6>(match_stats));
|
|
|
|
+ n_flipped.fill(std::get<7>(match_stats));
|
|
|
|
+ for(float dR : std::get<8>(match_stats)) matched_dR.fill(dR);
|
|
|
|
+ for(float dpT : std::get<9>(match_stats)) matched_dpT.fill(dpT);
|
|
|
|
+
|
|
|
|
+ match_stats = get_match_stats(true);
|
|
|
|
+ n_matched_dR.fill(std::get<2>(match_stats));
|
|
|
|
+ n_merged_dR.fill(std::get<3>(match_stats));
|
|
|
|
+ n_lost_dR.fill(std::get<4>(match_stats));
|
|
|
|
+ n_split_dR.fill(std::get<5>(match_stats));
|
|
|
|
+ n_faked_dR.fill(std::get<6>(match_stats));
|
|
|
|
+ n_flipped_dR.fill(std::get<7>(match_stats));
|
|
|
|
+ for(float dR : std::get<8>(match_stats)) matched_dR_dR.fill(dR);
|
|
|
|
+ for(float dpT : std::get<9>(match_stats)) matched_dpT_dR.fill(dpT);
|
|
|
|
+
|
|
|
|
+ for (const auto& sim_track : sim_tracks) {
|
|
|
|
+ if (!is_good_sim(sim_track)) continue;
|
|
|
|
+ sim_pt.fill(sim_track.pt());
|
|
|
|
+ sim_eta.fill(sim_track.eta());
|
|
|
|
+ sim_phi.fill(sim_track.phi());
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ for (const auto& reco_track : gsf_tracks) {
|
|
|
|
+ reco_pt.fill(reco_track.pt());
|
|
|
|
+ reco_eta.fill(reco_track.eta());
|
|
|
|
+ reco_phi.fill(reco_track.phi());
|
|
|
|
+ }
|
|
|
|
+
|
|
for (const auto& sim_track : sim_tracks) {
|
|
for (const auto& sim_track : sim_tracks) {
|
|
if (!is_good_sim(sim_track)) continue;
|
|
if (!is_good_sim(sim_track)) continue;
|
|
if (seeds.size() == 0) continue;
|
|
if (seeds.size() == 0) continue;
|
|
@@ -363,7 +515,6 @@ void run(){
|
|
if (abs(gsf_track.eta()) < 2.4 and gsf_track.pt() > 20)
|
|
if (abs(gsf_track.eta()) < 2.4 and gsf_track.pt() > 20)
|
|
tracking_pur.phi->fill(gsf_track.phi(), matched);
|
|
tracking_pur.phi->fill(gsf_track.phi(), matched);
|
|
|
|
|
|
-
|
|
|
|
// dR-matching
|
|
// dR-matching
|
|
matched = false;
|
|
matched = false;
|
|
for (const auto& sim_track : sim_tracks) {
|
|
for (const auto& sim_track : sim_tracks) {
|
|
@@ -381,22 +532,64 @@ void run(){
|
|
tracking_pur_dR.phi->fill(gsf_track.phi(), matched);
|
|
tracking_pur_dR.phi->fill(gsf_track.phi(), matched);
|
|
}
|
|
}
|
|
|
|
|
|
- // Fake Rate (#SC w/ 1 or more gsf-tracks / #SC) all w/ SC HOE>0.15
|
|
|
|
- std::map<size_t, size_t> scl2track;
|
|
|
|
- for (const auto &trk : gsf_tracks) {
|
|
|
|
- int seed_idx = trk.seedIdx();
|
|
|
|
- scl2track[seeds[seed_idx].sclIdx()] = trk.idx;
|
|
|
|
|
|
+ // Fake-Rate
|
|
|
|
+ std::map<size_t, std::vector<int>> scl2trk; // Maps superclusters to tm-status of matched gsf-tracks
|
|
|
|
+ for (const auto &gsf_track : gsf_tracks) {
|
|
|
|
+ bool gsf_truth_matched = false;
|
|
|
|
+ for(const auto& sim_track_idx : gsf_track.simTrkIdx()) {
|
|
|
|
+ if (is_good_sim(sim_tracks[sim_track_idx])) {
|
|
|
|
+ gsf_truth_matched = true;
|
|
|
|
+ break;
|
|
|
|
+ }
|
|
|
|
+ }
|
|
|
|
+ int scl_idx = seeds[gsf_track.seedIdx()].sclIdx();
|
|
|
|
+ scl2trk[scl_idx].push_back(gsf_truth_matched);
|
|
}
|
|
}
|
|
|
|
+ std::set<size_t> tm_scls; // Set of super-clusters with well matched sim-electrons
|
|
|
|
+ for (const auto &scl : scls) {
|
|
|
|
+ Vec4 p4 = scl_p4(scl);
|
|
|
|
+ for(const auto& sim_track : sim_tracks) {
|
|
|
|
+ if (!is_good_sim(sim_track)) continue;
|
|
|
|
+ if (deltaR(p4.eta(), p4.phi(), sim_track) > 0.2) continue;
|
|
|
|
+ if (((p4.Et() - sim_track.pt()) / p4.Et()) > 0.1) continue;
|
|
|
|
+ tm_scls.insert(scl.idx);
|
|
|
|
+ break;
|
|
|
|
+ }
|
|
|
|
+ }
|
|
|
|
+ /* cout << "scls: "; */
|
|
|
|
+ /* for (const auto& scl: scls) cout << scl.idx << ", "; */
|
|
|
|
+ /* cout << endl << "tm_scls: "; */
|
|
|
|
+ /* for (const auto& idx: tm_scls) cout << idx << ", "; */
|
|
|
|
+ /* cout << endl; */
|
|
for (const auto &scl : scls) {
|
|
for (const auto &scl : scls) {
|
|
if (scl.hoe() > hoe_cut) continue;
|
|
if (scl.hoe() > hoe_cut) continue;
|
|
float scl_pt = hypot(scl.px(), scl.py());
|
|
float scl_pt = hypot(scl.px(), scl.py());
|
|
float scl_eta = pseudorapidity(scl.x(), scl.y(), scl.z());
|
|
float scl_eta = pseudorapidity(scl.x(), scl.y(), scl.z());
|
|
float scl_phi = atan2(scl.py(), scl.px());
|
|
float scl_phi = atan2(scl.py(), scl.px());
|
|
|
|
|
|
- bool has_track = scl2track.count(scl.idx) == 1;
|
|
|
|
- fake_rate.pt->fill(scl_pt, has_track);
|
|
|
|
- fake_rate.eta->fill(scl_eta, has_track);
|
|
|
|
- fake_rate.phi->fill(scl_phi, has_track);
|
|
|
|
|
|
+ int ntracks = scl2trk[scl.idx].size();
|
|
|
|
+ int ntmtracks = std::accumulate(scl2trk[scl.idx].begin(), scl2trk[scl.idx].end(), 0);
|
|
|
|
+ bool partial_fake = ntmtracks > 0 and ntracks > ntmtracks;
|
|
|
|
+ bool full_fake = ntmtracks == 0 and ntracks > 0;
|
|
|
|
+ /* cout << "ntracks: " << ntracks << " "; */
|
|
|
|
+ /* cout << "count: " << tm_scls.count(scl.idx); */
|
|
|
|
+ if (ntracks > 0) {
|
|
|
|
+ partial_fake_rate.pt->fill(scl_pt, partial_fake);
|
|
|
|
+ partial_fake_rate.eta->fill(scl_eta, partial_fake);
|
|
|
|
+ partial_fake_rate.phi->fill(scl_phi, partial_fake);
|
|
|
|
+
|
|
|
|
+ full_fake_rate.pt->fill(scl_pt, full_fake);
|
|
|
|
+ full_fake_rate.eta->fill(scl_eta, full_fake);
|
|
|
|
+ full_fake_rate.phi->fill(scl_phi, full_fake);
|
|
|
|
+
|
|
|
|
+ if (tm_scls.count(scl.idx) == 0) {
|
|
|
|
+ /* cout << "Filling clean_fake_rate" << endl; */
|
|
|
|
+ clean_fake_rate.pt->fill(scl_pt, full_fake);
|
|
|
|
+ clean_fake_rate.eta->fill(scl_eta, full_fake);
|
|
|
|
+ clean_fake_rate.phi->fill(scl_phi, full_fake);
|
|
|
|
+ }
|
|
|
|
+ }
|
|
|
|
+ /* cout << endl; */
|
|
}
|
|
}
|
|
|
|
|
|
// Hit Residuals
|
|
// Hit Residuals
|
|
@@ -486,7 +679,6 @@ void run(){
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
- n_seeds.fill(seeds.size());
|
|
|
|
}
|
|
}
|
|
|
|
|
|
tds.save_all();
|
|
tds.save_all();
|