Fork me on GitHub

source: svn/trunk/modules/Cloner.h@ 1372

Last change on this file since 1372 was 1100, checked in by Pavel Demin, 11 years ago

add Cloner

  • Property svn:eol-style set to native
  • Property svn:keywords set to Id Revision Date
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: 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
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.