Last change
on this file since 1100 was 1100, checked in by Pavel Demin, 12 years ago |
add Cloner
|
-
Property svn:eol-style
set to
native
-
Property svn:keywords
set to
Id Revision Date
|
File size:
528 bytes
|
Rev | Line | |
---|
[1100] | 1 | #ifndef Clone_h
|
---|
| 2 | #define Clone_h
|
---|
| 3 |
|
---|
| 4 | /** \class Clone
|
---|
| 5 | *
|
---|
| 6 | * Clone candidate array
|
---|
| 7 | *
|
---|
| 8 | * $Date: 2013-04-26 10:42:11 +0000 (Fri, 26 Apr 2013) $
|
---|
| 9 | * $Revision: 1100 $
|
---|
| 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.