ImprovedOutputFile
Timing
dual_readout
llp
Last change
on this file since 4600a41 was d7d2da3, checked in by pavel <pavel@…>, 12 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 |
|
---|
21 | class TIterator;
|
---|
22 | class TObjArray;
|
---|
23 |
|
---|
24 | class StatusPidFilter: public DelphesModule
|
---|
25 | {
|
---|
26 | public:
|
---|
27 |
|
---|
28 | StatusPidFilter();
|
---|
29 | ~StatusPidFilter();
|
---|
30 |
|
---|
31 | void Init();
|
---|
32 | void Process();
|
---|
33 | void Finish();
|
---|
34 |
|
---|
35 | private:
|
---|
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.