Fork me on GitHub

source: git/modules/StatusPidFilter.h@ d352618

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

move branches/ModularDelphes to trunk

  • Property mode set to 100644
File size: 738 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$
12 * $Revision$
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.