Fork me on GitHub

source: git/modules/LeptonDressing.h@ 9ca0c9c

ImprovedOutputFile Timing dual_readout llp
Last change on this file since 9ca0c9c was d7d2da3, checked in by pavel <pavel@…>, 11 years ago

move branches/ModularDelphes to trunk

  • Property mode set to 100644
File size: 654 bytes
Line 
1#ifndef LeptonDressing_h
2#define LeptonDressing_h
3
4/** \class LeptonDressing
5 *
6 *
7 * \author P. Demin && A. Mertens - UCL, Louvain-la-Neuve
8 *
9 */
10
11#include "classes/DelphesModule.h"
12
13class TIterator;
14class TObjArray;
15
16class LeptonDressing: public DelphesModule
17{
18public:
19
20 LeptonDressing();
21 ~LeptonDressing();
22
23 void Init();
24 void Process();
25 void Finish();
26
27private:
28
29 Double_t fDeltaR;
30
31 TIterator *fItDressingInputArray; //!
32
33 TIterator *fItCandidateInputArray; //!
34
35 const TObjArray *fDressingInputArray; //!
36
37 const TObjArray *fCandidateInputArray; //!
38
39 TObjArray *fOutputArray; //!
40
41 ClassDef(LeptonDressing, 1)
42};
43
44#endif
Note: See TracBrowser for help on using the repository browser.