source: HiSusy/trunk/Delphes/Delphes-3.0.9/modules/Efficiency.h @ 5

Last change on this file since 5 was 5, checked in by zerwas, 11 years ago

update to Delphes-3.0.9

File size: 699 bytes
Line 
1#ifndef Efficiency_h
2#define Efficiency_h
3
4/** \class Efficiency
5 *
6 *  Selects candidates from the InputArray according to the efficiency formula.
7 *
8 *  $Date: 2013-02-12 14:57:44 +0100 (Tue, 12 Feb 2013) $
9 *  $Revision: 905 $
10 *
11 *
12 *  \author P. Demin - UCL, Louvain-la-Neuve
13 *
14 */
15
16#include "classes/DelphesModule.h"
17
18class TIterator;
19class TObjArray;
20class DelphesFormula;
21
22class Efficiency: public DelphesModule
23{
24public:
25
26  Efficiency();
27  ~Efficiency();
28
29  void Init();
30  void Process();
31  void Finish();
32
33private:
34
35  DelphesFormula *fFormula; //!
36
37  TIterator *fItInputArray; //!
38
39  const TObjArray *fInputArray; //!
40
41  TObjArray *fOutputArray; //!
42
43  ClassDef(Efficiency, 1)
44};
45
46#endif
Note: See TracBrowser for help on using the repository browser.