source: HiSusy/trunk/Delphes/Delphes-3.0.9/modules/StatusPidFilter.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: 792 bytes
Line 
1//------------------------------------------------------------------------------
2
3#ifndef StatusPidFilter_h
4#define StatusPidFilter_h
5
6/** \class Efficiency
7 *
8 *  Removes all generated particles except electrons, muons, taus,
9 *  and particles with status == 3.
10 *
11 *  $Date: 2013-04-07 00:12:34 +0200 (Sun, 07 Apr 2013) $
12 *  $Revision: 1079 $
13 *
14 *
15 *  \author J. Hirschauer - FNAL
16 *
17 */
18
19#include "classes/DelphesModule.h"
20
21class TIterator;
22class TObjArray;
23
24class StatusPidFilter: public DelphesModule
25{
26public:
27
28  StatusPidFilter();
29  ~StatusPidFilter();
30
31  void Init();
32  void Process();
33  void Finish();
34
35private:
36
37  Double_t fPTMin; //!
38
39  TIterator *fItInputArray; //!
40
41  const TObjArray *fInputArray; //!
42
43  TObjArray *fOutputArray; //!
44
45  ClassDef(StatusPidFilter, 1)
46};
47
48#endif
Note: See TracBrowser for help on using the repository browser.