ImprovedOutputFile
Timing
dual_readout
llp
Last change
on this file since 298a8fb was d7d2da3, checked in by pavel <pavel@…>, 12 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 |
|
---|
13 | class TIterator;
|
---|
14 | class TObjArray;
|
---|
15 |
|
---|
16 | class LeptonDressing: public DelphesModule
|
---|
17 | {
|
---|
18 | public:
|
---|
19 |
|
---|
20 | LeptonDressing();
|
---|
21 | ~LeptonDressing();
|
---|
22 |
|
---|
23 | void Init();
|
---|
24 | void Process();
|
---|
25 | void Finish();
|
---|
26 |
|
---|
27 | private:
|
---|
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.