source: HiSusy/trunk/Delphes/Delphes-3.0.9/modules/LeptonDressing.h @ 5

Last change on this file since 5 was 5, checked in by zerwas, 11 years ago

update to Delphes-3.0.9

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.