|
@@ -58,8 +58,8 @@ 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 // electrons
|
|
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
|
|
|
|
|
|
+ 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) {
|
|
@@ -341,6 +341,7 @@ 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_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_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_gsf_tracks = *tds.register_container<ContainerTH1<int>>("n_gsf_track", THParams::lookup("n_seeds"));
|
|
|
|
|
|
@@ -375,6 +376,11 @@ void run(){
|
|
while (tds.next()) {
|
|
while (tds.next()) {
|
|
|
|
|
|
n_seeds.fill(seeds.size());
|
|
n_seeds.fill(seeds.size());
|
|
|
|
+ size_t _n_good_seeds = 0;
|
|
|
|
+ for (const auto& seed : seeds)
|
|
|
|
+ if (is_good_seed(seed, hoe_cut)) _n_good_seeds++;
|
|
|
|
+ n_good_seeds.fill(_n_good_seeds);
|
|
|
|
+
|
|
auto match_stats = get_match_stats(false);
|
|
auto match_stats = get_match_stats(false);
|
|
n_good_sim.fill(std::get<0>(match_stats));
|
|
n_good_sim.fill(std::get<0>(match_stats));
|
|
n_gsf_tracks.fill(std::get<1>(match_stats));
|
|
n_gsf_tracks.fill(std::get<1>(match_stats));
|