ImprovedOutputFile
Timing
dual_readout
llp
Line | |
---|
1 | //------------------------------------------------------------------------------
|
---|
2 |
|
---|
3 | #ifndef PidFilter_h
|
---|
4 | #define PidFilter_h
|
---|
5 |
|
---|
6 | /** \class Efficiency
|
---|
7 | *
|
---|
8 | * Removes particles with specific pdg codes
|
---|
9 | *
|
---|
10 | * \author M. Selvaggi
|
---|
11 | *
|
---|
12 | */
|
---|
13 |
|
---|
14 | #include "classes/DelphesModule.h"
|
---|
15 | #include <vector>
|
---|
16 |
|
---|
17 | class TIterator;
|
---|
18 | class TObjArray;
|
---|
19 |
|
---|
20 | class PdgCodeFilter: public DelphesModule
|
---|
21 | {
|
---|
22 | public:
|
---|
23 |
|
---|
24 | PdgCodeFilter();
|
---|
25 | ~PdgCodeFilter();
|
---|
26 |
|
---|
27 | void Init();
|
---|
28 | void Process();
|
---|
29 | void Finish();
|
---|
30 |
|
---|
31 | private:
|
---|
32 |
|
---|
33 | Double_t fPTMin; //!
|
---|
34 |
|
---|
35 | std::vector<Int_t> fPdgCodes;
|
---|
36 |
|
---|
37 | TIterator *fItInputArray; //!
|
---|
38 |
|
---|
39 | const TObjArray *fInputArray; //!
|
---|
40 |
|
---|
41 | TObjArray *fOutputArray; //!
|
---|
42 |
|
---|
43 | ClassDef(PdgCodeFilter, 1)
|
---|
44 | };
|
---|
45 |
|
---|
46 | #endif
|
---|
Note:
See
TracBrowser
for help on using the repository browser.