Changes in modules/FastJetFinder.h [cab38f6:de6d698] in git
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
modules/FastJetFinder.h
rcab38f6 rde6d698 30 30 #include "classes/DelphesModule.h" 31 31 32 #include < map>32 #include <vector> 33 33 34 34 class TObjArray; … … 38 38 class JetDefinition; 39 39 class AreaDefinition; 40 class Selector;40 class JetMedianBackgroundEstimator; 41 41 namespace contrib { 42 42 class NjettinessPlugin; … … 83 83 Int_t fN ; 84 84 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 85 105 // --- FastJet Area method -------- 86 106 … … 100 120 Double_t fEffectiveRfact; 101 121 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 103 131 104 132 TIterator *fItInputArray; //!
Note:
See TracChangeset
for help on using the changeset viewer.