Fork me on GitHub

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

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

add eta ranges for rho

File size: 827 bytes
RevLine 
[1009]1#ifndef JetPileUpSubtractor_h
2#define JetPileUpSubtractor_h
3
4/** \class JetPileUpSubtractor
5 *
[1029]6 * Subtract pile-up contribution from jets using the fastjet area method
[1009]7 *
8 * $Date: 2012-11-18 15:57:08 +0100 (Sun, 18 Nov 2012) $
9 * $Revision: 814 $
10 *
[1029]11 * \author M. Selvaggi - UCL, Louvain-la-Neuve
[1009]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:
[1029]34
[1009]35 Double_t fJetPTMin;
[1029]36
[1009]37 TIterator *fItJetInputArray; //!
[1315]38 TIterator *fItRhoInputArray; //!
[1029]39
[1009]40 const TObjArray *fJetInputArray; //!
41 const TObjArray *fRhoInputArray; //!
42
43 TObjArray *fOutputArray; //!
44
45 ClassDef(JetPileUpSubtractor, 1)
46};
47
48#endif
Note: See TracBrowser for help on using the repository browser.