Changes in external/fastjet/ClusterSequence.cc [10e33bc:273e668] in git
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
external/fastjet/ClusterSequence.cc
r10e33bc r273e668 1 1 //FJSTARTHEADER 2 // $Id: ClusterSequence.cc 3 809 2015-02-20 13:05:13Z soyez$2 // $Id: ClusterSequence.cc 3685 2014-09-11 20:15:00Z salam $ 3 3 // 4 4 // Copyright (c) 2005-2014, Matteo Cacciari, Gavin P. Salam and Gregory Soyez … … 372 372 _plugin_activated = false; 373 373 374 #ifndef __FJCORE__ 374 375 } else if (_strategy == N2MHTLazy9AntiKtSeparateGhosts) { 375 #ifndef __FJCORE__376 376 // attempt to use an external tiling routine -- it manipulates 377 377 // the CS history via the plugin mechanism … … 1471 1471 assert(local_step == step_number); 1472 1472 1473 // sanity check: make sure the particles have not already been recombined1474 //1475 // Note that good practice would make this an assert (since this is1476 // a serious internal issue). However, we decided to throw an1477 // InternalError so that the end user can decide to catch it and1478 // retry the clustering with a different strategy.1479 1480 1473 assert(parent1 >= 0); 1481 if (_history[parent1].child != Invalid){1482 throw InternalError("trying to recomine an object that has previsously been recombined");1483 }1484 1474 _history[parent1].child = local_step; 1485 if (parent2 >= 0) { 1486 if (_history[parent2].child != Invalid){ 1487 throw InternalError("trying to recomine an object that has previsously been recombined"); 1488 } 1489 _history[parent2].child = local_step; 1490 } 1475 if (parent2 >= 0) {_history[parent2].child = local_step;} 1491 1476 1492 1477 // get cross-referencing right from PseudoJets
Note:
See TracChangeset
for help on using the changeset viewer.