|
[Rivet-svn] rivet: Add @todo comments planning additional tagging features o...Rivet Mercurial rivet at projects.hepforge.orgWed Jul 29 12:15:02 BST 2015
details: https://rivet.hepforge.org/hg/rivet/rev/31c57074501f branches: changeset: 4827:31c57074501f user: Andy Buckley <andy at insectnation.org> date: Wed Jul 29 11:57:34 2015 +0100 description: Add @todo comments planning additional tagging features on FastJets and Jet classes diffs (truncated from 81 to 50 lines): --- a/include/Rivet/Jet.hh Wed Jul 29 11:00:22 2015 +0200 +++ b/include/Rivet/Jet.hh Wed Jul 29 11:57:34 2015 +0100 @@ -78,17 +78,23 @@ /// /// General sources of tag particles are planned. The default jet finding /// adds b-hadron, c-hadron, and tau tags by ghost association. + /// + /// @todo Add a version with a Cut argument Particles& tags() { return _tags; } /// @brief Particles which have been tag-matched to this jet (const version) /// /// General sources of tag particles are planned. The default jet finding /// adds b-hadron, c-hadron, and tau tags by ghost association. + /// + /// @todo Add a version with a Cut argument const Particles& tags() const { return _tags; } /// @brief b particles which have been tag-matched to this jet /// /// The default jet finding adds b-hadron tags by ghost association. + /// + /// @todo Add a version with a Cut argument Particles bTags() const { Particles rtn; foreach (const Particle& tp, _tags) { @@ -97,6 +103,8 @@ return rtn; } /// Does this jet have at least one b-tag? + /// + /// @todo Add an optional Cut argument bool bTagged() const { return !bTags().empty(); } @@ -105,6 +113,8 @@ /// @brief c particles which have been tag-matched to this jet by some external means /// /// The default jet finding adds c-hadron tags by ghost association. + /// + /// @todo Add a version with a Cut argument Particles cTags() const { Particles rtn; foreach (const Particle& tp, _tags) { @@ -113,6 +123,8 @@ return rtn; } /// Does this jet have at least one c-tag? + /// + /// @todo Add an optional Cut argument
More information about the Rivet-svn mailing list |