ImprovedOutputFile
Timing
dual_readout
llp
Last change
on this file since 4b9a2dc was c5e72d8, checked in by Pavel Demin <pavel.demin@…>, 10 years ago |
remove unneeded 'class DelphesFormula;' declarations and add ifndef expressions for CLING
|
-
Property mode
set to
100644
|
File size:
506 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 |
|
---|
21 | class Cloner: public DelphesModule
|
---|
22 | {
|
---|
23 | public:
|
---|
24 |
|
---|
25 | Cloner();
|
---|
26 | ~Cloner();
|
---|
27 |
|
---|
28 | void Init();
|
---|
29 | void Process();
|
---|
30 | void Finish();
|
---|
31 |
|
---|
32 | private:
|
---|
33 |
|
---|
34 | TIterator *fItInputArray; //!
|
---|
35 |
|
---|
36 | const TObjArray *fInputArray; //!
|
---|
37 | TObjArray *fOutputArray; //!
|
---|
38 |
|
---|
39 | ClassDef(Cloner, 1)
|
---|
40 | };
|
---|
41 |
|
---|
42 | #endif
|
---|
Note:
See
TracBrowser
for help on using the repository browser.