Fork me on GitHub

Ignore:
Timestamp:
Sep 3, 2014, 3:18:54 PM (10 years ago)
Author:
Pavel Demin <demin@…>
Branches:
ImprovedOutputFile, Timing, dual_readout, llp, master
Children:
be2222c
Parents:
5b5a56b
Message:

upgrade FastJet to version 3.1.0-beta.1, upgrade Nsubjettiness to version 2.1.0, add SoftKiller version 1.0.0

File:
1 edited

Legend:

Unmodified
Added
Removed
  • external/fastjet/plugins/SISCone/SISConePlugin.cc

    r5b5a56b r35cdc46  
    207207
    208208  // give the extras object to the cluster sequence.
    209   clust_seq.plugin_associate_extras(std::auto_ptr<ClusterSequence::Extras>(extras));
     209  //
     210  // As of v3.1 of FastJet, extras are automatically owned (as
     211  // SharedPtr) by the ClusterSequence and auto_ptr is deprecated. So
     212  // we can use a simple pointer here
     213  //clust_seq.plugin_associate_extras(std::auto_ptr<ClusterSequence::Extras>(extras));
     214  clust_seq.plugin_associate_extras(extras);
    210215}
    211216
Note: See TracChangeset for help on using the changeset viewer.