|
@@ -14,6 +14,7 @@
|
|
|
typedef ROOT::Math::LorentzVector<ROOT::Math::PxPyPzE4D<float>> Vec4;
|
|
|
|
|
|
SeedCollection seeds;
|
|
|
+GenCollection gens;
|
|
|
SimTrackCollection sim_tracks;
|
|
|
SimVertexCollection sim_vertices;
|
|
|
TrackCollection gsf_tracks;
|
|
@@ -23,6 +24,7 @@ std::vector<SimTrack> sim_els;
|
|
|
|
|
|
void register_objects(TrackingDataSet& tds){
|
|
|
seeds.init(&tds);
|
|
|
+ gens.init(&tds);
|
|
|
sim_tracks.init(&tds);
|
|
|
sim_vertices.init(&tds);
|
|
|
gsf_tracks.init(&tds);
|
|
@@ -85,23 +87,50 @@ 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) {
|
|
|
- return sqrt(pow(sim_track.eta() - gsf_track.eta(), 2.0) +
|
|
|
- pow(sim_track.phi() - gsf_track.phi(), 2.0));
|
|
|
+double deltaR(double eta1, double phi1, double eta2, double phi2) {
|
|
|
+ return sqrt(pow(eta1 - eta2, 2.0) +
|
|
|
+ pow(phi1 - phi2, 2.0));
|
|
|
}
|
|
|
|
|
|
void update_sim_els() {
|
|
|
sim_els.clear();
|
|
|
for (const SimTrack sim_track: sim_tracks) {
|
|
|
- if (is_good_sim(sim_track)) sim_els.push_back(sim_track);
|
|
|
+ if (is_good_sim(sim_track)) {
|
|
|
+ sim_els.push_back(sim_track);
|
|
|
+ }
|
|
|
}
|
|
|
}
|
|
|
|
|
|
+std::vector<SimTrack> get_prompt_sims() {
|
|
|
+
|
|
|
+ * Returns sim tracks that pass is_good_sim as well as match well with a
|
|
|
+ * prompt gen electron
|
|
|
+ */
|
|
|
+ std::vector<Gen> prompt_gen;
|
|
|
+ for (const auto& gen : gens) {
|
|
|
+ if (abs(gen.pdgId()) == 11 and gen.isPrompt()) {
|
|
|
+ prompt_gen.push_back(gen);
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+ std::vector<SimTrack> prompt_sim;
|
|
|
+ for (const auto& gen : prompt_gen) {
|
|
|
+ float gen_phi = atan2(gen.py(), gen.px());
|
|
|
+ float gen_eta = pseudorapidityP(gen.px(), gen.py(), gen.pz());
|
|
|
+ int gen_id = gen.pdgId();
|
|
|
+ for (const auto& sim_el : sim_els) {
|
|
|
+ float sim_phi = sim_el.phi();
|
|
|
+ float sim_eta = sim_el.eta();
|
|
|
+ int sim_id = sim_el.pdgId();
|
|
|
+ if (gen_id == sim_id and deltaR(gen_eta, gen_phi, sim_eta, sim_phi) < 0.05) {
|
|
|
+ prompt_sim.push_back(sim_el);
|
|
|
+ break;
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+ return prompt_sim;
|
|
|
+}
|
|
|
+
|
|
|
|
|
|
auto get_match_stats(bool dRMatch) {
|
|
|
int nSimTrack = 0;
|
|
@@ -121,30 +150,34 @@ auto get_match_stats(bool dRMatch) {
|
|
|
for(const auto& gsf_track : gsf_tracks)
|
|
|
gsf_matches[gsf_track.idx] = {};
|
|
|
|
|
|
- nSimTrack = sim_matches.size();
|
|
|
- nGSFTrack = gsf_matches.size();
|
|
|
+ nSimTrack = static_cast<int>(sim_matches.size());
|
|
|
+ nGSFTrack = static_cast<int>(gsf_matches.size());
|
|
|
|
|
|
for (const auto& sim_track : sim_els) {
|
|
|
if (dRMatch) {
|
|
|
for (const auto& gsf_track : gsf_tracks) {
|
|
|
- float dR = deltaR(sim_track, gsf_track);
|
|
|
+ double dR = deltaR(sim_track.eta(), sim_track.phi(), gsf_track.eta(), gsf_track.phi());
|
|
|
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++;
|
|
|
+ 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);
|
|
|
+ double dR = deltaR(sim_track.eta(), sim_track.phi(), gsf_track.eta(), gsf_track.phi());
|
|
|
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_dR.push_back(static_cast<float &&>(dR));
|
|
|
matched_dpT.push_back((sim_track.pt() - gsf_track.pt())/sim_track.pt());
|
|
|
- if (gsf_track.q() != sim_track.q()) nFlipped++;
|
|
|
+ if (gsf_track.q() != sim_track.q()) {
|
|
|
+ nFlipped++;
|
|
|
+ }
|
|
|
}
|
|
|
}
|
|
|
}
|
|
@@ -204,7 +237,7 @@ void run(){
|
|
|
const int& layer, const int& hit, const int& tm_type) {
|
|
|
name.str("");
|
|
|
name << var << "_" << region;
|
|
|
- if (layer)
|
|
|
+ if (layer>0)
|
|
|
name << "_L" << layer;
|
|
|
name << "_H" << hit << "_v_Et";
|
|
|
switch (tm_type) {
|
|
@@ -314,6 +347,11 @@ void run(){
|
|
|
tds.register_container<ContainerTH1<float>>("scl_v_eta", THParams::lookup("eta")),
|
|
|
tds.register_container<ContainerTH1<float>>("scl_v_phi", THParams::lookup("phi"))};
|
|
|
|
|
|
+ KinColl<ContainerTH1<float>> prompt_kinems = {
|
|
|
+ tds.register_container<ContainerTH1<float>>("prompt_v_pt", THParams::lookup("pt")),
|
|
|
+ tds.register_container<ContainerTH1<float>>("prompt_v_eta", THParams::lookup("eta")),
|
|
|
+ tds.register_container<ContainerTH1<float>>("prompt_v_phi", THParams::lookup("phi"))};
|
|
|
+
|
|
|
|
|
|
KinColl<EfficiencyContainer<float>> seed_eff = {
|
|
|
tds.register_container<EfficiencyContainer<float>>("seed_eff_v_pt", THParams::lookup("pt")),
|
|
@@ -323,6 +361,7 @@ void run(){
|
|
|
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 = {
|
|
|
tds.register_container<EfficiencyContainer<float>>("tracking_eff_v_pt", THParams::lookup("pt")),
|
|
|
tds.register_container<EfficiencyContainer<float>>("tracking_eff_v_eta", THParams::lookup("eta")),
|
|
@@ -331,6 +370,14 @@ void run(){
|
|
|
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>> prompt_eff = {
|
|
|
+ tds.register_container<EfficiencyContainer<float>>("prompt_eff_v_pt", THParams::lookup("pt")),
|
|
|
+ tds.register_container<EfficiencyContainer<float>>("prompt_eff_v_eta", THParams::lookup("eta")),
|
|
|
+ tds.register_container<EfficiencyContainer<float>>("prompt_eff_v_phi", THParams::lookup("phi"))};
|
|
|
+ KinColl<EfficiencyContainer<float>> prompt_pur = {
|
|
|
+ tds.register_container<EfficiencyContainer<float>>("prompt_pur_v_pt", THParams::lookup("pt")),
|
|
|
+ tds.register_container<EfficiencyContainer<float>>("prompt_pur_v_eta", THParams::lookup("eta")),
|
|
|
+ tds.register_container<EfficiencyContainer<float>>("prompt_pur_v_phi", THParams::lookup("phi"))};
|
|
|
|
|
|
KinColl<EfficiencyContainer<float>> tracking_eff_dR = {
|
|
|
tds.register_container<EfficiencyContainer<float>>("tracking_eff_v_pt_dR", THParams::lookup("pt")),
|
|
@@ -340,6 +387,14 @@ void run(){
|
|
|
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>> prompt_eff_dR = {
|
|
|
+ tds.register_container<EfficiencyContainer<float>>("prompt_eff_v_pt_dR", THParams::lookup("pt")),
|
|
|
+ tds.register_container<EfficiencyContainer<float>>("prompt_eff_v_eta_dR", THParams::lookup("eta")),
|
|
|
+ tds.register_container<EfficiencyContainer<float>>("prompt_eff_v_phi_dR", THParams::lookup("phi"))};
|
|
|
+ KinColl<EfficiencyContainer<float>> prompt_pur_dR = {
|
|
|
+ tds.register_container<EfficiencyContainer<float>>("prompt_pur_v_pt_dR", THParams::lookup("pt")),
|
|
|
+ tds.register_container<EfficiencyContainer<float>>("prompt_pur_v_eta_dR", THParams::lookup("eta")),
|
|
|
+ tds.register_container<EfficiencyContainer<float>>("prompt_pur_v_phi_dR", THParams::lookup("phi"))};
|
|
|
|
|
|
KinColl<EfficiencyContainer<float>> fake_rate = {
|
|
|
tds.register_container<EfficiencyContainer<float>>("fake_rate_v_pt", THParams::lookup("pt")),
|
|
@@ -392,6 +447,7 @@ void run(){
|
|
|
auto& n_seeds = *tds.register_container<ContainerTH1<size_t>>("n_seeds", THParams::lookup("n_seeds"));
|
|
|
auto& n_good_seeds = *tds.register_container<ContainerTH1<size_t>>("n_good_seeds", THParams::lookup("n_seeds"));
|
|
|
auto& n_good_sim = *tds.register_container<ContainerTH1<int>>("n_good_sim", THParams::lookup("n_seeds"));
|
|
|
+ auto& n_prompt = *tds.register_container<ContainerTH1<int>>("n_prompt", THParams::lookup("n_seeds"));
|
|
|
auto& n_gsf_tracks = *tds.register_container<ContainerTH1<int>>("n_gsf_track", THParams::lookup("n_seeds"));
|
|
|
auto& n_scl = *tds.register_container<ContainerTH1<size_t>>("n_scl", THParams::lookup("n_seeds"));
|
|
|
auto& n_good_scl = *tds.register_container<ContainerTH1<size_t>>("n_good_scl", THParams::lookup("n_seeds"));
|
|
@@ -430,6 +486,8 @@ void run(){
|
|
|
while (tds.next()) {
|
|
|
|
|
|
update_sim_els();
|
|
|
+ vector<SimTrack> prompt_sims = get_prompt_sims();
|
|
|
+
|
|
|
|
|
|
size_t _n_good_seeds = 0;
|
|
|
for (const auto& seed : seeds) {
|
|
@@ -449,6 +507,13 @@ void run(){
|
|
|
good_sim_kinems.phi->fill(sim_track.phi());
|
|
|
}
|
|
|
|
|
|
+ n_prompt.fill(prompt_sims.size());
|
|
|
+ for (const auto& prompt : prompt_sims) {
|
|
|
+ prompt_kinems.pt->fill(prompt.pt());
|
|
|
+ prompt_kinems.eta->fill(prompt.eta());
|
|
|
+ prompt_kinems.phi->fill(prompt.phi());
|
|
|
+ }
|
|
|
+
|
|
|
for (const auto& gsf_track : gsf_tracks) {
|
|
|
gsf_kinems.pt->fill(gsf_track.pt());
|
|
|
gsf_kinems.eta->fill(gsf_track.eta());
|
|
@@ -534,6 +599,7 @@ void run(){
|
|
|
for (const auto& sim_track : sim_els) {
|
|
|
if (gsf_tracks.size() == 0) continue;
|
|
|
bool matched = false;
|
|
|
+ bool prompt_matched = false;
|
|
|
for (const auto& track_idx : sim_track.trkIdx()) {
|
|
|
const Seed& seed = seeds[gsf_tracks[track_idx].seedIdx()];
|
|
|
if (is_good_seed(seed, hoe_cut)) {
|
|
@@ -548,11 +614,20 @@ void run(){
|
|
|
if (abs(sim_track.eta()) < 2.4 and sim_track.pt() > 20)
|
|
|
tracking_eff.phi->fill(sim_track.phi(), matched);
|
|
|
|
|
|
+ if (std::find(prompt_sims.begin(), prompt_sims.end(), sim_track) != prompt_sims.end()) {
|
|
|
+ if (abs(sim_track.eta()) < 2.4)
|
|
|
+ prompt_eff.pt->fill(sim_track.pt(), matched);
|
|
|
+ if (sim_track.pt() > 20.0)
|
|
|
+ prompt_eff.eta->fill(sim_track.eta(), matched);
|
|
|
+ if (abs(sim_track.eta()) < 2.4 and sim_track.pt() > 20)
|
|
|
+ prompt_eff.phi->fill(sim_track.phi(), matched);
|
|
|
+ }
|
|
|
+
|
|
|
|
|
|
matched = false;
|
|
|
for (const auto& gsf_track : gsf_tracks) {
|
|
|
const Seed& seed = seeds[gsf_track.seedIdx()];
|
|
|
- double dR = deltaR(sim_track, gsf_track);
|
|
|
+ double dR = deltaR(sim_track.eta(), sim_track.phi(), gsf_track.eta(), gsf_track.phi());
|
|
|
if (is_good_seed(seed, hoe_cut) and dR < 0.2) {
|
|
|
matched = true;
|
|
|
break;
|
|
@@ -564,6 +639,15 @@ void run(){
|
|
|
tracking_eff_dR.eta->fill(sim_track.eta(), matched);
|
|
|
if (abs(sim_track.eta()) < 2.4 and sim_track.pt() > 20)
|
|
|
tracking_eff_dR.phi->fill(sim_track.phi(), matched);
|
|
|
+
|
|
|
+ if (find(prompt_sims.begin(), prompt_sims.end(), sim_track) != prompt_sims.end()) {
|
|
|
+ if (abs(sim_track.eta()) < 2.4)
|
|
|
+ prompt_eff_dR.pt->fill(sim_track.pt(), matched);
|
|
|
+ if (sim_track.pt() > 20.0)
|
|
|
+ prompt_eff_dR.eta->fill(sim_track.eta(), matched);
|
|
|
+ if (abs(sim_track.eta()) < 2.4 and sim_track.pt() > 20)
|
|
|
+ prompt_eff_dR.phi->fill(sim_track.phi(), matched);
|
|
|
+ }
|
|
|
}
|
|
|
|
|
|
|
|
@@ -590,10 +674,13 @@ void run(){
|
|
|
const Seed& seed = seeds[gsf_track.seedIdx()];
|
|
|
if (!is_good_seed(seed, hoe_cut)) continue;
|
|
|
bool matched = false;
|
|
|
+ bool prompt_matched = false;
|
|
|
for (const auto& sim_track_idx : gsf_track.simTrkIdx()) {
|
|
|
- if (is_good_sim(sim_tracks[sim_track_idx])) {
|
|
|
- matched = true;
|
|
|
- break;
|
|
|
+ const auto& sim_track = sim_tracks[sim_track_idx];
|
|
|
+ if (!is_good_sim(sim_track)) continue;
|
|
|
+ matched = true;
|
|
|
+ if (find(prompt_sims.begin(), prompt_sims.end(), sim_track) != prompt_sims.end()) {
|
|
|
+ prompt_matched = true;
|
|
|
}
|
|
|
}
|
|
|
if (abs(gsf_track.eta()) < 2.4)
|
|
@@ -603,13 +690,23 @@ void run(){
|
|
|
if (abs(gsf_track.eta()) < 2.4 and gsf_track.pt() > 20)
|
|
|
tracking_pur.phi->fill(gsf_track.phi(), matched);
|
|
|
|
|
|
+ if (abs(gsf_track.eta()) < 2.4)
|
|
|
+ prompt_pur.pt->fill(gsf_track.pt(), prompt_matched);
|
|
|
+ if (gsf_track.pt() > 20)
|
|
|
+ prompt_pur.eta->fill(gsf_track.eta(), prompt_matched);
|
|
|
+ if (abs(gsf_track.eta()) < 2.4 and gsf_track.pt() > 20)
|
|
|
+ prompt_pur.phi->fill(gsf_track.phi(), prompt_matched);
|
|
|
+
|
|
|
|
|
|
matched = false;
|
|
|
+ prompt_matched = false;
|
|
|
for (const auto& sim_track : sim_els) {
|
|
|
- double dR = deltaR(sim_track, gsf_track);
|
|
|
+ double dR = deltaR(sim_track.eta(), sim_track.phi(), gsf_track.eta(), gsf_track.phi());
|
|
|
if (dR < 0.2) {
|
|
|
matched = true;
|
|
|
- break;
|
|
|
+ if (find(prompt_sims.begin(), prompt_sims.end(), sim_track) != prompt_sims.end()) {
|
|
|
+ prompt_matched = true;
|
|
|
+ }
|
|
|
}
|
|
|
}
|
|
|
if (abs(gsf_track.eta()) < 2.4)
|
|
@@ -618,6 +715,13 @@ void run(){
|
|
|
tracking_pur_dR.eta->fill(gsf_track.eta(), matched);
|
|
|
if (abs(gsf_track.eta()) < 2.4 and gsf_track.pt() > 20)
|
|
|
tracking_pur_dR.phi->fill(gsf_track.phi(), matched);
|
|
|
+
|
|
|
+ if (abs(gsf_track.eta()) < 2.4)
|
|
|
+ prompt_pur_dR.pt->fill(gsf_track.pt(), prompt_matched);
|
|
|
+ if (gsf_track.pt() > 20)
|
|
|
+ prompt_pur_dR.eta->fill(gsf_track.eta(), prompt_matched);
|
|
|
+ if (abs(gsf_track.eta()) < 2.4 and gsf_track.pt() > 20)
|
|
|
+ prompt_pur_dR.phi->fill(gsf_track.phi(), prompt_matched);
|
|
|
}
|
|
|
|
|
|
|
|
@@ -637,7 +741,7 @@ void run(){
|
|
|
for (const auto &scl : scls) {
|
|
|
Vec4 p4 = scl_p4(scl);
|
|
|
for(const auto& sim_track : sim_els) {
|
|
|
- if (deltaR(p4.eta(), p4.phi(), sim_track) > 0.2) continue;
|
|
|
+ if (deltaR(p4.eta(), p4.phi(), sim_track.eta(), sim_track.phi()) > 0.2) continue;
|
|
|
if (((p4.Et() - sim_track.pt()) / p4.Et()) > 0.1) continue;
|
|
|
tm_scls.insert(scl.idx);
|
|
|
break;
|