Changeset b9ae4c3 in git for external/fastjet/plugins/SISCone/split_merge.h
- Timestamp:
- Sep 2, 2016, 3:46:14 PM (8 years ago)
- Branches:
- ImprovedOutputFile, Timing, dual_readout, llp, master
- Children:
- fa068d3
- Parents:
- ec5e04b (diff), 23389ff (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the(diff)
links above to see all the changes relative to each parent. - git-author:
- Pavel Demin <pavel-demin@…> (09/02/16 15:46:14)
- git-committer:
- GitHub <noreply@…> (09/02/16 15:46:14)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
external/fastjet/plugins/SISCone/split_merge.h
rec5e04b rb9ae4c3 22 22 // Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA // 23 23 // // 24 // $Revision:: 367$//25 // $Date:: 201 4-09-04 15:57:37 +0200 (Thu, 04 Sep 2014) $//24 // $Revision:: 405 $// 25 // $Date:: 2016-05-23 20:15:02 +0200 (Mon, 23 May 2016) $// 26 26 /////////////////////////////////////////////////////////////////////////////// 27 27 … … 29 29 #define __SPLIT_MERGE_H__ 30 30 31 #include "config.h" 31 32 #include "defines.h" 32 33 #include "geom_2d.h" … … 39 40 40 41 namespace siscone{ 42 43 const int CJET_INEXISTENT_PASS = -2; 41 44 42 45 /** … … 75 78 /// pass at which the jet has been found 76 79 /// It starts at 0 (first pass), -1 means infinite rapidity 80 /// (it will be initialised to "CJET_INEXISTENT_PASS" which should 81 /// never appear after clustering) 77 82 int pass; 78 83 }; … … 441 446 // jet information 442 447 /// list of jet candidates 448 #ifdef SISCONE_USES_UNIQUE_PTR_AS_AUTO_PTR 449 std::unique_ptr<std::multiset<Cjet,Csplit_merge_ptcomparison> > candidates; 450 #else 443 451 std::auto_ptr<std::multiset<Cjet,Csplit_merge_ptcomparison> > candidates; 444 452 #endif 453 445 454 /// minimal pt2 446 455 double pt_min2;
Note:
See TracChangeset
for help on using the changeset viewer.