-
Notifications
You must be signed in to change notification settings - Fork 4.4k
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
Introduced plugin for generator-level tt+X event categorisation #10564
Introduced plugin for generator-level tt+X event categorisation #10564
Conversation
A new Pull Request was created by @bartosik-desy (Nazar Bartosik) for CMSSW_7_6_X. Introduced plugin for generator-level tt+X event categorisation It involves the following packages: TopQuarkAnalysis/TopTools @cmsbuild, @vadler, @monttj can you please review it and eventually sign? Thanks. |
please test |
The tests are being triggered in jenkins. |
+1 |
1 similar comment
+1 |
This pull request is fully signed and it will be integrated in one of the next CMSSW_7_6_X IBs (tests are also fine). This pull request requires discussion in the ORP meeting before it's merged. @davidlange6, @Degano, @smuzaffar |
// ------------ method returns a vector of jet indices from the given map, sorted by N hadrons in descending order ------------ | ||
std::vector<int> GenTtbarCategorizer::nHadronsOrderedJetIndices(const std::map<int, int>& m_jetIndex) | ||
{ | ||
std::vector<std::pair<int, int> > v_jetNhadIndexPair; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
suggest to add a v_jetNhadIndexPair.reserve(m_jetIndex.size()); here
@cmsbuild, please test |
The tests are being triggered in jenkins. |
+1 |
This pull request is fully signed and it will be integrated in one of the next CMSSW_7_6_X IBs (tests are also fine). This pull request requires discussion in the ORP meeting before it's merged. @davidlange6, @Degano, @smuzaffar |
+1 |
…gorizer Introduced plugin for generator-level tt+X event categorisation
Allows to separate between different tt+jets subprocesss with a single integer number: tt+bb, tt+cc, tt+2b, tt+2c, tt+light jet, etc.
An improved version of the custom producer provided in the TWiki, based on the GenHFHadronMatcher tool.
Supports all decay channels of the ttbar system.
To be used by Top and ttH analyses.