Fork me on GitHub

Changeset d77b51d in git for modules/FastJetFinder.h


Ignore:
Timestamp:
Sep 29, 2015, 2:08:10 PM (9 years ago)
Author:
Michele Selvaggi <michele.selvaggi@…>
Branches:
ImprovedOutputFile, Timing, dual_readout, llp, master
Children:
a98c7ef
Parents:
d870fc5 (diff), 06ec139 (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.
Message:

Merge remote-tracking branch 'upstream/master'

File:
1 edited

Legend:

Unmodified
Added
Removed
  • modules/FastJetFinder.h

    rd870fc5 rd77b51d  
    3030#include "classes/DelphesModule.h"
    3131
    32 #include <map>
     32#include <vector>
    3333
    3434class TObjArray;
     
    3838  class JetDefinition;
    3939  class AreaDefinition;
    40   class Selector;
     40  class JetMedianBackgroundEstimator;
    4141  namespace contrib {
    4242    class NjettinessPlugin;
     
    8383  Int_t fN ;
    8484
     85  //-- Trimming parameters --
     86 
     87  Bool_t fComputeTrimming;
     88  Double_t fRTrim;
     89  Double_t fPtFracTrim;
     90 
     91  //-- Pruning parameters --
     92
     93  Bool_t fComputePruning;
     94  Double_t fZcutPrun;
     95  Double_t fRcutPrun;
     96  Double_t fRPrun;
     97
     98  //-- SoftDrop parameters --
     99
     100  Bool_t fComputeSoftDrop;
     101  Double_t fBetaSoftDrop;
     102  Double_t fSymmetryCutSoftDrop;
     103  Double_t fR0SoftDrop;
     104
    85105  // --- FastJet Area method --------
    86106
     
    100120  Double_t fEffectiveRfact;
    101121
    102   std::map< Double_t, Double_t > fEtaRangeMap; //!
     122#if !defined(__CINT__) && !defined(__CLING__)
     123  struct TEstimatorStruct
     124  {
     125    fastjet::JetMedianBackgroundEstimator *estimator;
     126    Double_t etaMin, etaMax;
     127  };
     128
     129  std::vector< TEstimatorStruct > fEstimators; //!
     130#endif
    103131
    104132  TIterator *fItInputArray; //!
Note: See TracChangeset for help on using the changeset viewer.