Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Change the default ctag value to be true for truth c-jets #253

Merged
merged 3 commits into from
May 6, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion doc/releases/changelog-v1.10.md
Original file line number Diff line number Diff line change
Expand Up @@ -66,6 +66,8 @@
edge case bug fixes.
([#211](https://github.com/MadAnalysis/madanalysis5/pull/211))

* Include c-tagging options.

## Bug fixes

* Permanently fix the zlib version to the latest.
Expand Down Expand Up @@ -147,4 +149,5 @@ This release contains contributions from (in alphabetical order):
[Jack Y. Araz](https://github.com/jackaraz),
[Kyle Fan](https://github.com/kfan326),
[Matthew Feickert](https://github.com/matthewfeickert),
[Benjamin Fuks](https://github.com/bfuks)
[Benjamin Fuks](https://github.com/bfuks),
[Bingxuan Liu](https://github.com/prbbing)
1 change: 1 addition & 0 deletions tools/SampleAnalyzer/Process/JetClustering/bTagger.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -108,6 +108,7 @@ void bTagger::Method1 (SampleFormat& mySample, EventFormat& myEvent)

// 100% identification
if (jet->true_btag_) jet->btag_=true;
if (jet->true_ctag_) jet->ctag_=true;
if (!doEfficiency_ && !doMisefficiency_) continue;

// identification efficiency
Expand Down
Loading