Fork me on GitHub

source: git/modules/Cloner.h@ 5b822e5

ImprovedOutputFile Timing dual_readout llp
Last change on this file since 5b822e5 was f8d08bb, checked in by pavel <pavel@…>, 11 years ago

add Cloner

  • Property mode set to 100644
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
19class TObjArray;
20class DelphesFormula;
21
22class Cloner: public DelphesModule
23{
24public:
25
26 Cloner();
27 ~Cloner();
28
29 void Init();
30 void Process();
31 void Finish();
32
33private:
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.