Fork me on GitHub

source: svn/trunk/modules/JetPileUpSubtractor.h@ 1240

Last change on this file since 1240 was 1029, checked in by Pavel Demin, 11 years ago

check number of elements in fRhoInputArray and remove fItRhoInputArray

File size: 792 bytes
Line 
1#ifndef JetPileUpSubtractor_h
2#define JetPileUpSubtractor_h
3
4/** \class JetPileUpSubtractor
5 *
6 * Subtract pile-up contribution from jets using the fastjet area method
7 *
8 * $Date: 2012-11-18 15:57:08 +0100 (Sun, 18 Nov 2012) $
9 * $Revision: 814 $
10 *
11 * \author M. Selvaggi - UCL, Louvain-la-Neuve
12 *
13 */
14
15#include "classes/DelphesModule.h"
16
17#include <deque>
18
19class TObjArray;
20class DelphesFormula;
21
22class JetPileUpSubtractor: public DelphesModule
23{
24public:
25
26 JetPileUpSubtractor();
27 ~JetPileUpSubtractor();
28
29 void Init();
30 void Process();
31 void Finish();
32
33private:
34
35 Double_t fJetPTMin;
36
37 TIterator *fItJetInputArray; //!
38
39 const TObjArray *fJetInputArray; //!
40 const TObjArray *fRhoInputArray; //!
41
42 TObjArray *fOutputArray; //!
43
44 ClassDef(JetPileUpSubtractor, 1)
45};
46
47#endif
Note: See TracBrowser for help on using the repository browser.