Last change
on this file since 1297 was 814, checked in by Pavel Demin, 12 years ago |
add doxygen comments to all classes and modules
|
-
Property svn:keywords
set to
Id Revision Date
|
File size:
755 bytes
|
Line | |
---|
1 | #ifndef ExampleModule_h
|
---|
2 | #define ExampleModule_h
|
---|
3 |
|
---|
4 | /** \class ExampleModule
|
---|
5 | *
|
---|
6 | * Selects candidates from the InputArray according to the efficiency formula.
|
---|
7 | *
|
---|
8 | * $Date: 2012-11-18 14:57:08 +0000 (Sun, 18 Nov 2012) $
|
---|
9 | * $Revision: 814 $
|
---|
10 | *
|
---|
11 | *
|
---|
12 | * \author P. Demin - UCL, Louvain-la-Neuve
|
---|
13 | *
|
---|
14 | */
|
---|
15 |
|
---|
16 | #include "classes/DelphesModule.h"
|
---|
17 |
|
---|
18 | #include <deque>
|
---|
19 |
|
---|
20 | class TObjArray;
|
---|
21 | class DelphesFormula;
|
---|
22 |
|
---|
23 | class ExampleModule: public DelphesModule
|
---|
24 | {
|
---|
25 | public:
|
---|
26 |
|
---|
27 | ExampleModule();
|
---|
28 | ~ExampleModule();
|
---|
29 |
|
---|
30 | void Init();
|
---|
31 | void Process();
|
---|
32 | void Finish();
|
---|
33 |
|
---|
34 | private:
|
---|
35 |
|
---|
36 | Int_t fIntParam;
|
---|
37 | Double_t fDoubleParam;
|
---|
38 |
|
---|
39 | std::deque <Double_t> fArrayParam;
|
---|
40 |
|
---|
41 | DelphesFormula *fFormula; //!
|
---|
42 |
|
---|
43 | TIterator *fItInputArray; //!
|
---|
44 |
|
---|
45 | const TObjArray *fInputArray; //!
|
---|
46 |
|
---|
47 | TObjArray *fOutputArray; //!
|
---|
48 |
|
---|
49 | ClassDef(ExampleModule, 1)
|
---|
50 | };
|
---|
51 |
|
---|
52 | #endif
|
---|
Note:
See
TracBrowser
for help on using the repository browser.