source:
git/modules/Cloner.h@
7e4da42
Last change on this file since 7e4da42 was f8d08bb, checked in by , 12 years ago | |
---|---|
|
|
File size: 528 bytes |
Line | |
---|---|
1 | #ifndef Clone_h |
2 | #define Clone_h |
3 | |
4 | /** \class Clone |
5 | * |
6 | * Clone candidate array |
7 | * |
8 | * $Date$ |
9 | * $Revision$ |
10 | * |
11 | * \author M. Selvaggi - UCL, Louvain-la-Neuve |
12 | * |
13 | */ |
14 | |
15 | #include "classes/DelphesModule.h" |
16 | |
17 | #include <deque> |
18 | |
19 | class TObjArray; |
20 | class DelphesFormula; |
21 | |
22 | class Cloner: public DelphesModule |
23 | { |
24 | public: |
25 | |
26 | Cloner(); |
27 | ~Cloner(); |
28 | |
29 | void Init(); |
30 | void Process(); |
31 | void Finish(); |
32 | |
33 | private: |
34 | |
35 | TIterator *fItInputArray; //! |
36 | |
37 | const TObjArray *fInputArray; //! |
38 | TObjArray *fOutputArray; //! |
39 | |
40 | ClassDef(Cloner, 1) |
41 | }; |
42 | |
43 | #endif |
Note:
See TracBrowser
for help on using the repository browser.