|
@@ -46,6 +46,10 @@ bool is_good_sim(const SimTrack& sim_track) {
|
|
|
return abs(sim_track.pdgId()) == 11 and in_lum_region(vertex);
|
|
|
};
|
|
|
|
|
|
+bool is_good_seed(const Seed& seed, float hoe_cut) {
|
|
|
+ return seed.isECALDriven() and seed.hoe() < hoe_cut;
|
|
|
+}
|
|
|
+
|
|
|
float reco_energy_rel_err(const SimTrack& sim_track, const Seed& seed) {
|
|
|
return (sim_track.pt() - seed.Et()) / sim_track.pt() ;
|
|
|
}
|
|
@@ -54,6 +58,14 @@ bool reco_energy_consistent(const SimTrack& sim_track, const Seed& seed, float c
|
|
|
return fabs(reco_energy_rel_err(sim_track, seed)) < consistency_cut;
|
|
|
}
|
|
|
|
|
|
+float reco_energy_rel_err(const SimTrack& sim_track, const Track& track) {
|
|
|
+ return (sim_track.pt() - track.pt()) / sim_track.pt() ;
|
|
|
+}
|
|
|
+
|
|
|
+bool reco_energy_consistent(const SimTrack& sim_track, const Track& track, float consistency_cut=0.1) {
|
|
|
+ return fabs(reco_energy_rel_err(sim_track, track)) < consistency_cut;
|
|
|
+}
|
|
|
+
|
|
|
void run(bool silent){
|
|
|
using namespace std;
|
|
|
using namespace fv;
|
|
@@ -63,12 +75,8 @@ void run(bool silent){
|
|
|
TrackingDataSet tds(output_filename, file_list, "trackingNtuple/tree");
|
|
|
register_objects(tds);
|
|
|
|
|
|
- int x = 12;
|
|
|
- int y = 13;
|
|
|
|
|
|
- for (auto z : vector<pair<int,int>>{{x, x}, {y, y}}) {
|
|
|
- cout << z.first << endl;
|
|
|
- }
|
|
|
+ float hoe_cut = the_config->get("hoe_cut").as<float>(999);
|
|
|
|
|
|
bs = {
|
|
|
tds.track_branch<float>("bsp_x"),
|
|
@@ -79,37 +87,70 @@ void run(bool silent){
|
|
|
tds.track_branch<float>("bsp_sigmaz")
|
|
|
};
|
|
|
|
|
|
- std::map<std::tuple<int, int, bool>, ContainerTH2<float>*> BPIX_residuals_dRz;
|
|
|
- std::map<std::tuple<int, int, bool>, ContainerTH2<float>*> BPIX_residuals_dPhi;
|
|
|
- std::map<std::tuple<int, int, bool>, ContainerTH2<float>*> FPIX_residuals_dRz;
|
|
|
- std::map<std::tuple<int, int, bool>, ContainerTH2<float>*> FPIX_residuals_dPhi;
|
|
|
+ enum TMType {
|
|
|
+ NoMatch = 0,
|
|
|
+ SeedMatched = 1,
|
|
|
+ TrackMatched = 2,
|
|
|
+ SeedAndTrackMatched = 3
|
|
|
+ };
|
|
|
+
|
|
|
+ std::map<std::tuple<int, int>, ContainerTH2<float>*> residuals_dRz;
|
|
|
+ std::map<std::tuple<int, int>, ContainerTH2<float>*> residuals_dPhi;
|
|
|
+
|
|
|
+ std::map<std::tuple<int, int, int>, ContainerTH2<float>*> BPIX_residuals_dRz;
|
|
|
+ std::map<std::tuple<int, int, int>, ContainerTH2<float>*> BPIX_residuals_dPhi;
|
|
|
+ std::map<std::tuple<int, int, int>, ContainerTH2<float>*> FPIX_residuals_dRz;
|
|
|
+ std::map<std::tuple<int, int, int>, ContainerTH2<float>*> FPIX_residuals_dPhi;
|
|
|
|
|
|
- int layer, hit, isFake;
|
|
|
stringstream name;
|
|
|
- auto set_name = [&name, &layer, &hit, &isFake](const std::string& var, const std::string& region) {
|
|
|
+ auto set_name = [&name](const std::string& var, const std::string& region,
|
|
|
+ const int& layer, const int& hit, const int& tm_type) {
|
|
|
name.str("");
|
|
|
- name << var << "_" << region << "_L" << layer << "_H" << hit << "_v_Et";
|
|
|
- if (isFake)
|
|
|
- name << "_fake";
|
|
|
-
|
|
|
+ name << var << "_" << region;
|
|
|
+ if (layer)
|
|
|
+ name << "_L" << layer;
|
|
|
+ name << "_H" << hit << "_v_Et";
|
|
|
+ switch (tm_type) {
|
|
|
+ case NoMatch:
|
|
|
+ name << "_NoMatch";
|
|
|
+ break;
|
|
|
+ case SeedMatched:
|
|
|
+ name << "_SeedMatched";
|
|
|
+ break;
|
|
|
+ case TrackMatched:
|
|
|
+ name << "_TrackMatched";
|
|
|
+ break;
|
|
|
+ case SeedAndTrackMatched:
|
|
|
+ name << "_SeedAndTrackMatched";
|
|
|
+ break;
|
|
|
+ default:
|
|
|
+ break;
|
|
|
+ }
|
|
|
};
|
|
|
|
|
|
THParams hist_params;
|
|
|
- for (layer=1; layer<=4; layer++) {
|
|
|
- for (hit=1; hit<=3; hit++) {
|
|
|
- for (isFake=0; isFake<=1; isFake++) {
|
|
|
+ for (int hit=1; hit<=3; hit++) {
|
|
|
+ for (int tm_type = NoMatch; tm_type <= SeedAndTrackMatched; tm_type++) {
|
|
|
+ for (int layer=1; layer<=4; layer++) {
|
|
|
hist_params = (hit == 1) ? THParams::lookup("dRz_v_Et") : THParams::lookup("dRz_v_Et_outer_hits");
|
|
|
- set_name("dRz", "BPIX");
|
|
|
- BPIX_residuals_dRz[{layer, hit, isFake}] = tds.register_container<ContainerTH2<float>>(name.str(), hist_params);
|
|
|
- set_name("dRz", "FPIX");
|
|
|
- FPIX_residuals_dRz[{layer, hit, isFake}] = tds.register_container<ContainerTH2<float>>(name.str(), hist_params);
|
|
|
+ set_name("dRz", "BPIX", layer, hit, tm_type);
|
|
|
+ BPIX_residuals_dRz[{layer, hit, tm_type}] = tds.register_container<ContainerTH2<float>>(name.str(), hist_params);
|
|
|
+ set_name("dRz", "FPIX", layer, hit, tm_type);
|
|
|
+ FPIX_residuals_dRz[{layer, hit, tm_type}] = tds.register_container<ContainerTH2<float>>(name.str(), hist_params);
|
|
|
|
|
|
hist_params = (hit == 1) ? THParams::lookup("dPhi_v_Et") : THParams::lookup("dPhi_v_Et_outer_hits");
|
|
|
- set_name("dPhi", "BPIX");
|
|
|
- BPIX_residuals_dPhi[{layer, hit, isFake}] = tds.register_container<ContainerTH2<float>>(name.str(), hist_params);
|
|
|
- set_name("dPhi", "FPIX");
|
|
|
- FPIX_residuals_dPhi[{layer, hit, isFake}] = tds.register_container<ContainerTH2<float>>(name.str(), hist_params);
|
|
|
+ set_name("dPhi", "BPIX", layer, hit, tm_type);
|
|
|
+ BPIX_residuals_dPhi[{layer, hit, tm_type}] = tds.register_container<ContainerTH2<float>>(name.str(), hist_params);
|
|
|
+ set_name("dPhi", "FPIX", layer, hit, tm_type);
|
|
|
+ FPIX_residuals_dPhi[{layer, hit, tm_type}] = tds.register_container<ContainerTH2<float>>(name.str(), hist_params);
|
|
|
}
|
|
|
+ hist_params = (hit == 1) ? THParams::lookup("dRz_v_Et") : THParams::lookup("dRz_v_Et_outer_hits");
|
|
|
+ set_name("dRz", "ALL", 0, hit, tm_type);
|
|
|
+ residuals_dRz[{hit, tm_type}] = tds.register_container<ContainerTH2<float>>(name.str(), hist_params);
|
|
|
+
|
|
|
+ hist_params = (hit == 1) ? THParams::lookup("dPhi_v_Et") : THParams::lookup("dPhi_v_Et_outer_hits");
|
|
|
+ set_name("dPhi", "ALL", 0, hit, tm_type);
|
|
|
+ residuals_dPhi[{hit, tm_type}] = tds.register_container<ContainerTH2<float>>(name.str(), hist_params);
|
|
|
}
|
|
|
}
|
|
|
|
|
@@ -192,6 +233,8 @@ void run(bool silent){
|
|
|
|
|
|
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"));
|
|
|
+
|
|
|
while (tds.next(!silent)) {
|
|
|
|
|
|
for (const auto& sim_track : sim_tracks) {
|
|
@@ -199,7 +242,7 @@ void run(bool silent){
|
|
|
if (seeds.size() == 0) continue;
|
|
|
for (const auto &seed_idx : sim_track.seedIdx()) {
|
|
|
const Seed& seed = seeds[seed_idx];
|
|
|
- if (not seed.isECALDriven()) continue;
|
|
|
+ if (!is_good_seed(seed, hoe_cut)) continue;
|
|
|
ecal_energy_resolution.fill(reco_energy_rel_err(sim_track, seed));
|
|
|
}
|
|
|
}
|
|
@@ -211,7 +254,7 @@ void run(bool silent){
|
|
|
bool matched = false;
|
|
|
for (const auto& seed_idx : sim_track.seedIdx()) {
|
|
|
const Seed& seed = seeds[seed_idx];
|
|
|
- if (seed.isECALDriven()) {
|
|
|
+ if (is_good_seed(seed, hoe_cut)) {
|
|
|
matched=true;
|
|
|
break;
|
|
|
}
|
|
@@ -232,7 +275,7 @@ void run(bool silent){
|
|
|
bool matched = false;
|
|
|
for (const auto& track_idx : sim_track.trkIdx()) {
|
|
|
const Seed& seed = seeds[gsf_tracks[track_idx].seedIdx()];
|
|
|
- if (seed.isECALDriven()) {
|
|
|
+ if (is_good_seed(seed, hoe_cut)) {
|
|
|
matched=true;
|
|
|
break;
|
|
|
}
|
|
@@ -250,7 +293,7 @@ void run(bool silent){
|
|
|
matched = false;
|
|
|
for (const auto& seed_idx : sim_track.seedIdx()) {
|
|
|
const Seed& seed = seeds[seed_idx];
|
|
|
- if (seed.isECALDriven() and seed.trkIdx()>=0 and reco_energy_consistent(sim_track, seed)) {
|
|
|
+ if (is_good_seed(seed, hoe_cut) and seed.trkIdx()>=0 and reco_energy_consistent(sim_track, seed)) {
|
|
|
matched=true;
|
|
|
break;
|
|
|
}
|
|
@@ -265,7 +308,7 @@ void run(bool silent){
|
|
|
|
|
|
// Seeding Purity
|
|
|
for (const auto& seed : seeds) {
|
|
|
- if (!seed.isECALDriven()) continue;
|
|
|
+ if (!is_good_seed(seed, hoe_cut)) continue;
|
|
|
bool match = false;
|
|
|
for (const auto& sim_track_idx : seed.simTrkIdx()) {
|
|
|
if(is_good_sim(sim_tracks[sim_track_idx])) {
|
|
@@ -284,6 +327,8 @@ void run(bool silent){
|
|
|
// Tracking Purity
|
|
|
for (const auto& gsf_track : gsf_tracks) {
|
|
|
gsf_tracks_nmatch_sim_tracks.fill(gsf_track.simTrkIdx().size());
|
|
|
+ const Seed& seed = seeds[gsf_track.seedIdx()];
|
|
|
+ if (!is_good_seed(seed, hoe_cut)) continue;
|
|
|
bool match = false;
|
|
|
for (const auto& sim_track_idx : gsf_track.simTrkIdx()) {
|
|
|
if (is_good_sim(sim_tracks[sim_track_idx])) {
|
|
@@ -299,7 +344,7 @@ void run(bool silent){
|
|
|
tracking_pur_v_phi.fill(gsf_track.phi(), match);
|
|
|
|
|
|
match = false;
|
|
|
- for (const auto& sim_track_idx : seeds[gsf_track.seedIdx()].simTrkIdx()) {
|
|
|
+ for (const auto& sim_track_idx : seed.simTrkIdx()) {
|
|
|
if (is_good_sim(sim_tracks[sim_track_idx])) {
|
|
|
match = true;
|
|
|
break;
|
|
@@ -316,18 +361,37 @@ void run(bool silent){
|
|
|
// Hit Residuals
|
|
|
for (const auto& seed : seeds) {
|
|
|
if (seed.trkIdx() < 0) continue; // require that seed produced gsf-track
|
|
|
- if (!seed.isECALDriven()) continue;
|
|
|
- bool is_sim_matched = false;
|
|
|
+ if (!is_good_seed(seed, hoe_cut)) continue;
|
|
|
+ bool is_seed_sim_matched = false;
|
|
|
for (const auto& sim_track_idx : seed.simTrkIdx()) {
|
|
|
const SimTrack& sim_track = sim_tracks[sim_track_idx];
|
|
|
if (is_good_sim(sim_track) and reco_energy_consistent(sim_track, seed)) {
|
|
|
- is_sim_matched = true;
|
|
|
+ is_seed_sim_matched = true;
|
|
|
break;
|
|
|
-// std::cout << "Matched to non-electron: " << sim_tracks[sim_track_idx].pdgId()
|
|
|
-// << " (" << seed.simTrkIdx().size() << ")" << std::endl;
|
|
|
}
|
|
|
}
|
|
|
+
|
|
|
+ bool is_track_sim_matched = false;
|
|
|
const auto the_track = gsf_tracks[seed.trkIdx()];
|
|
|
+ for (const auto& sim_track_idx : the_track.simTrkIdx()) {
|
|
|
+ const SimTrack& sim_track = sim_tracks[sim_track_idx];
|
|
|
+ if (is_good_sim(sim_track) and reco_energy_consistent(sim_track, the_track)) {
|
|
|
+ is_track_sim_matched = true;
|
|
|
+ break;
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+ std::vector<TMType> tm_types;
|
|
|
+ if (is_seed_sim_matched and is_track_sim_matched) {
|
|
|
+ tm_types = {SeedAndTrackMatched, SeedMatched, TrackMatched};
|
|
|
+ } else if (is_seed_sim_matched) {
|
|
|
+ tm_types = {SeedMatched};
|
|
|
+ } else if (is_track_sim_matched) {
|
|
|
+ tm_types = {TrackMatched};
|
|
|
+ } else {
|
|
|
+ tm_types = {NoMatch};
|
|
|
+ }
|
|
|
+
|
|
|
vector<int> hits_valid;
|
|
|
vector<float> hits_dRz;
|
|
|
vector<float> hits_dPhi;
|
|
@@ -343,41 +407,45 @@ void run(bool silent){
|
|
|
const vector<int>& hits_isBarrel = seed.isBarrel();
|
|
|
const vector<int>& hits_layerOrDiskNr = seed.layerOrDiskNr();
|
|
|
|
|
|
- size_t nHits = hits_valid.size();
|
|
|
- for (size_t hit_idx=0; hit_idx<nHits; hit_idx++) {
|
|
|
- if (!hits_valid[hit_idx]) continue;
|
|
|
- bool isBarrel = hits_isBarrel[hit_idx] == 1;
|
|
|
- int layerOrDiskNr = hits_layerOrDiskNr[hit_idx];
|
|
|
- float dRz = abs(hits_dRz[hit_idx]);
|
|
|
- float dPhi = abs(hits_dPhi[hit_idx]);
|
|
|
- int eta_region = get_region(static_cast<int>(hit_idx + 1), seed.eta());
|
|
|
-
|
|
|
-
|
|
|
- if (is_sim_matched) {
|
|
|
- dRz_residuals_v_eta[hit_idx + 1]->fill(dRz, abs(seed.eta()));
|
|
|
- dPhi_residuals_v_eta[hit_idx + 1]->fill(dPhi, abs(seed.eta()));
|
|
|
-
|
|
|
- dRz_residuals_v_region[{hit_idx + 1, eta_region}]->fill(dRz, seed.Et());
|
|
|
- dPhi_residuals_v_region[{hit_idx + 1, eta_region}]->fill(dPhi, seed.Et());
|
|
|
-
|
|
|
- }
|
|
|
-
|
|
|
- if (layerOrDiskNr == -1) continue; // subDet is not set w/ old seeding
|
|
|
-
|
|
|
- if (isBarrel)
|
|
|
- hit_vs_layer_barrel.fill(layerOrDiskNr, static_cast<const int &>(hit_idx + 1));
|
|
|
- else
|
|
|
- hit_vs_layer_forward.fill(layerOrDiskNr, static_cast<const int &>(hit_idx + 1));
|
|
|
-
|
|
|
- if (isBarrel) {
|
|
|
- BPIX_residuals_dRz[{layerOrDiskNr, hit_idx+1, !is_sim_matched}]->fill(dRz, seed.Et());
|
|
|
- BPIX_residuals_dPhi[{layerOrDiskNr, hit_idx+1, !is_sim_matched}]->fill(dPhi, seed.Et());
|
|
|
- } else {
|
|
|
- FPIX_residuals_dRz[{layerOrDiskNr, hit_idx+1, !is_sim_matched}]->fill(dRz, seed.Et());
|
|
|
- FPIX_residuals_dPhi[{layerOrDiskNr, hit_idx+1, !is_sim_matched}]->fill(dPhi, seed.Et());
|
|
|
+ for (const auto& tm_type : tm_types) {
|
|
|
+ size_t nHits = hits_valid.size();
|
|
|
+ for (size_t hit_idx = 0; hit_idx < nHits; hit_idx++) {
|
|
|
+ if (!hits_valid[hit_idx]) continue;
|
|
|
+ bool isBarrel = hits_isBarrel[hit_idx] == 1;
|
|
|
+ int layerOrDiskNr = hits_layerOrDiskNr[hit_idx];
|
|
|
+ float dRz = abs(hits_dRz[hit_idx]);
|
|
|
+ float dPhi = abs(hits_dPhi[hit_idx]);
|
|
|
+ int eta_region = get_region(static_cast<int>(hit_idx + 1), seed.eta());
|
|
|
+
|
|
|
+
|
|
|
+ if (is_seed_sim_matched) {
|
|
|
+ dRz_residuals_v_eta[hit_idx + 1]->fill(dRz, abs(seed.eta()));
|
|
|
+ dPhi_residuals_v_eta[hit_idx + 1]->fill(dPhi, abs(seed.eta()));
|
|
|
+
|
|
|
+ dRz_residuals_v_region[{hit_idx + 1, eta_region}]->fill(dRz, seed.Et());
|
|
|
+ dPhi_residuals_v_region[{hit_idx + 1, eta_region}]->fill(dPhi, seed.Et());
|
|
|
+ }
|
|
|
+
|
|
|
+ residuals_dRz[{hit_idx + 1, tm_type}]->fill(dRz, seed.Et());
|
|
|
+ residuals_dPhi[{hit_idx + 1, tm_type}]->fill(dPhi, seed.Et());
|
|
|
+ if (layerOrDiskNr == -1) continue; // subDet is not set w/ old seeding
|
|
|
+
|
|
|
+ if (isBarrel)
|
|
|
+ hit_vs_layer_barrel.fill(layerOrDiskNr, static_cast<const int &>(hit_idx + 1));
|
|
|
+ else
|
|
|
+ hit_vs_layer_forward.fill(layerOrDiskNr, static_cast<const int &>(hit_idx + 1));
|
|
|
+
|
|
|
+ if (isBarrel) {
|
|
|
+ BPIX_residuals_dRz[{layerOrDiskNr, hit_idx + 1, tm_type}]->fill(dRz, seed.Et());
|
|
|
+ BPIX_residuals_dPhi[{layerOrDiskNr, hit_idx + 1, tm_type}]->fill(dPhi, seed.Et());
|
|
|
+ } else {
|
|
|
+ FPIX_residuals_dRz[{layerOrDiskNr, hit_idx + 1, tm_type}]->fill(dRz, seed.Et());
|
|
|
+ FPIX_residuals_dPhi[{layerOrDiskNr, hit_idx + 1, tm_type}]->fill(dPhi, seed.Et());
|
|
|
+ }
|
|
|
}
|
|
|
}
|
|
|
}
|
|
|
+ n_seeds.fill(seeds.size());
|
|
|
}
|
|
|
|
|
|
tds.save_all();
|