ImprovedOutputFile
Timing
dual_readout
llp
Last change
on this file since 2013f0a was d7d2da3, checked in by pavel <pavel@…>, 12 years ago |
move branches/ModularDelphes to trunk
|
-
Property mode
set to
100644
|
File size:
714 bytes
|
Line | |
---|
1 | #ifndef ConstituentFilter_h
|
---|
2 | #define ConstituentFilter_h
|
---|
3 |
|
---|
4 | /** \class ConstituentFilter
|
---|
5 | *
|
---|
6 | * Drops all input objects that are not constituents of any jet.
|
---|
7 | *
|
---|
8 | * $Date$
|
---|
9 | * $Revision$
|
---|
10 | *
|
---|
11 | *
|
---|
12 | * \author P. Demin - UCL, Louvain-la-Neuve
|
---|
13 | *
|
---|
14 | */
|
---|
15 |
|
---|
16 | #include "classes/DelphesModule.h"
|
---|
17 |
|
---|
18 | #include <vector>
|
---|
19 | #include <map>
|
---|
20 |
|
---|
21 | class TIterator;
|
---|
22 | class TObjArray;
|
---|
23 |
|
---|
24 | class ConstituentFilter: public DelphesModule
|
---|
25 | {
|
---|
26 | public:
|
---|
27 |
|
---|
28 | ConstituentFilter();
|
---|
29 | ~ConstituentFilter();
|
---|
30 |
|
---|
31 | void Init();
|
---|
32 | void Process();
|
---|
33 | void Finish();
|
---|
34 |
|
---|
35 | private:
|
---|
36 |
|
---|
37 | Double_t fJetPTMin;
|
---|
38 |
|
---|
39 | std::vector< TIterator * > fInputList; //!
|
---|
40 |
|
---|
41 | std::map< TIterator *, TObjArray * > fInputMap; //!
|
---|
42 |
|
---|
43 | TObjArray *fOutputArray; //!
|
---|
44 |
|
---|
45 | ClassDef(ConstituentFilter, 1)
|
---|
46 | };
|
---|
47 |
|
---|
48 | #endif
|
---|
Note:
See
TracBrowser
for help on using the repository browser.