Skip to content

Commit

Permalink
Merge branch 'main' into validation_error
Browse files Browse the repository at this point in the history
  • Loading branch information
harrypuuter authored Apr 12, 2024
2 parents a146aca + 75911f5 commit 63125c5
Show file tree
Hide file tree
Showing 10 changed files with 358 additions and 3 deletions.
Binary file modified data/embedding/embeddingselection_2016postVFPUL.json.gz
Binary file not shown.
Binary file modified data/embedding/embeddingselection_2016preVFPUL.json.gz
Binary file not shown.
Binary file added data/embedding/embeddingselection_2017UL.json.gz
Binary file not shown.
Binary file added data/embedding/embeddingselection_2018UL.json.gz
Binary file not shown.
Binary file modified data/embedding/muon_2016postVFPUL.json.gz
Binary file not shown.
Binary file modified data/embedding/muon_2016preVFPUL.json.gz
Binary file not shown.
Binary file modified data/embedding/muon_2017UL.json.gz
Binary file not shown.
Binary file modified data/embedding/muon_2018UL.json.gz
Binary file not shown.
13 changes: 12 additions & 1 deletion include/pairselection.hxx
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,9 @@ auto PairSelectionAlgo(const float &mindeltaR);
namespace leptonic {
auto ElMuPairSelectionAlgo(const float &mindeltaR);
auto PairSelectionAlgo(const float &mindeltaR);
auto PairSelectionAlgoOSPreferred(const float &mindeltaR);
auto ZBosonPairSelectionAlgo(const float &mindeltaR);
auto ZBosonPairSelectionAlgoOSPreferred(const float &mindeltaR);
} // namespace leptonic
namespace mutau {

Expand Down Expand Up @@ -90,10 +92,19 @@ ROOT::RDF::RNode PairSelection(ROOT::RDF::RNode df,
const std::string &pairname,
const float &mindeltaR);

ROOT::RDF::RNode PairSelectionOSPreferred(ROOT::RDF::RNode df,
const std::vector<std::string> &input_vector,
const std::string &pairname, const float &mindeltaR);

ROOT::RDF::RNode
ZBosonPairSelection(ROOT::RDF::RNode df,
const std::vector<std::string> &input_vector,
const std::string &pairname, const float &mindeltaR);

ROOT::RDF::RNode ZBosonPairSelectionOSPreferred(
ROOT::RDF::RNode df, const std::vector<std::string> &input_vector,
const std::string &pairname, const float &mindeltaR);

} // end namespace mumu
namespace elel {

Expand All @@ -108,4 +119,4 @@ ZBosonPairSelection(ROOT::RDF::RNode df,
const std::string &pairname, const float &mindeltaR);
} // end namespace elel
} // namespace ditau_pairselection
#endif /* GUARD_PAIRSELECTION_H */
#endif /* GUARD_PAIRSELECTION_H */
348 changes: 346 additions & 2 deletions src/pairselection.cxx

Large diffs are not rendered by default.

0 comments on commit 63125c5

Please sign in to comment.