Fork me on GitHub

source: git/modules/FastJetFinder.h@ 27bf162

ImprovedOutputFile Timing dual_readout llp
Last change on this file since 27bf162 was cc331b2, checked in by pavel <pavel@…>, 11 years ago

change AdjacencyCut type from double to int

  • Property mode set to 100644
File size: 1.4 KB
RevLine 
[d7d2da3]1#ifndef FastJetFinder_h
2#define FastJetFinder_h
3
4/** \class FastJetFinder
5 *
6 * Finds jets using FastJet library.
7 *
8 * $Date$
9 * $Revision$
10 *
11 *
12 * \author P. Demin - UCL, Louvain-la-Neuve
13 *
14 */
15
16#include "classes/DelphesModule.h"
17
[8336b6e]18#include <map>
[d7d2da3]19
20class TObjArray;
21class TIterator;
22
23namespace fastjet {
24 class JetDefinition;
25 class AreaDefinition;
26 class Selector;
27}
28
29class FastJetFinder: public DelphesModule
30{
31public:
32
33 FastJetFinder();
34 ~FastJetFinder();
35
36 void Init();
37 void Process();
38 void Finish();
[8336b6e]39
[d7d2da3]40private:
41
42 void *fPlugin; //!
43 fastjet::JetDefinition *fDefinition; //!
[8336b6e]44
[d7d2da3]45 Int_t fJetAlgorithm;
46 Double_t fParameterR;
47 Double_t fJetPTMin;
48 Double_t fConeRadius;
49 Double_t fSeedThreshold;
50 Double_t fConeAreaFraction;
51 Int_t fMaxIterations;
52 Int_t fMaxPairSize;
53 Int_t fIratch;
[cc331b2]54 Int_t fAdjacencyCut;
[d7d2da3]55 Double_t fOverlapThreshold;
[8336b6e]56
[d7d2da3]57 // --- FastJet Area method --------
[8336b6e]58
[d7d2da3]59 fastjet::AreaDefinition *fAreaDefinition;
[8336b6e]60 Int_t fAreaAlgorithm;
61 Bool_t fComputeRho;
62
[d7d2da3]63 // -- ghost based areas --
64 Double_t fGhostEtaMax;
65 Int_t fRepeat;
66 Double_t fGhostArea;
67 Double_t fGridScatter;
68 Double_t fPtScatter;
[8336b6e]69 Double_t fMeanGhostPt;
70
[d7d2da3]71 // -- voronoi areas --
72 Double_t fEffectiveRfact;
[8336b6e]73
74 std::map< Double_t, Double_t > fEtaRangeMap; //!
75
[d7d2da3]76 TIterator *fItInputArray; //!
77
78 const TObjArray *fInputArray; //!
79
80 TObjArray *fOutputArray; //!
81 TObjArray *fRhoOutputArray; //!
82
83 ClassDef(FastJetFinder, 1)
84};
85
86#endif
Note: See TracBrowser for help on using the repository browser.