Fork me on GitHub

source: svn/trunk/modules/FastJetFinder.h

Last change on this file was 1383, checked in by Pavel Demin, 10 years ago

fix namespace usage

  • Property svn:keywords set to Id Revision Date
File size: 1.7 KB
RevLine 
[593]1#ifndef FastJetFinder_h
2#define FastJetFinder_h
3
[814]4/** \class FastJetFinder
5 *
[816]6 * Finds jets using FastJet library.
[814]7 *
8 * $Date: 2014-04-17 10:28:09 +0000 (Thu, 17 Apr 2014) $
9 * $Revision: 1383 $
10 *
11 *
12 * \author P. Demin - UCL, Louvain-la-Neuve
13 *
14 */
15
[687]16#include "classes/DelphesModule.h"
[593]17
[1315]18#include <map>
[593]19
20class TObjArray;
21class TIterator;
22
23namespace fastjet {
24 class JetDefinition;
[1008]25 class AreaDefinition;
26 class Selector;
[1383]27 namespace contrib {
28 class NjettinessPlugin;
29 }
[593]30}
31
[687]32class FastJetFinder: public DelphesModule
[593]33{
34public:
35
36 FastJetFinder();
37 ~FastJetFinder();
38
39 void Init();
40 void Process();
41 void Finish();
[1315]42
[593]43private:
44
[611]45 void *fPlugin; //!
[1368]46 void *fRecomb; //!
[1383]47 fastjet::contrib::NjettinessPlugin *fNjettinessPlugin; //!
[1372]48
[593]49 fastjet::JetDefinition *fDefinition; //!
[1315]50
[593]51 Int_t fJetAlgorithm;
52 Double_t fParameterR;
53 Double_t fJetPTMin;
[611]54 Double_t fConeRadius;
55 Double_t fSeedThreshold;
56 Double_t fConeAreaFraction;
57 Int_t fMaxIterations;
58 Int_t fMaxPairSize;
59 Int_t fIratch;
[1337]60 Int_t fAdjacencyCut;
[611]61 Double_t fOverlapThreshold;
[1315]62
[1368]63 //-- N (sub)jettiness parameters --
[1372]64
[1368]65 Bool_t fComputeNsubjettiness;
66 Double_t fBeta;
67 Int_t fAxisMode;
[1372]68 Double_t fRcutOff;
[1368]69 Int_t fN ;
[1372]70
[1008]71 // --- FastJet Area method --------
[1315]72
[1008]73 fastjet::AreaDefinition *fAreaDefinition;
[1315]74 Int_t fAreaAlgorithm;
75 Bool_t fComputeRho;
76
[1008]77 // -- ghost based areas --
78 Double_t fGhostEtaMax;
79 Int_t fRepeat;
80 Double_t fGhostArea;
81 Double_t fGridScatter;
82 Double_t fPtScatter;
[1315]83 Double_t fMeanGhostPt;
84
[1008]85 // -- voronoi areas --
86 Double_t fEffectiveRfact;
[1315]87
88 std::map< Double_t, Double_t > fEtaRangeMap; //!
89
[593]90 TIterator *fItInputArray; //!
91
92 const TObjArray *fInputArray; //!
93
94 TObjArray *fOutputArray; //!
[1031]95 TObjArray *fRhoOutputArray; //!
[593]96
97 ClassDef(FastJetFinder, 1)
98};
99
100#endif
Note: See TracBrowser for help on using the repository browser.