ImprovedOutputFile
Timing
llp
Line | |
---|
1 | //------------------------------------------------------------------------------
|
---|
2 |
|
---|
3 | #ifndef BeamSpotFilter_h
|
---|
4 | #define BeamSpotFilter_h
|
---|
5 |
|
---|
6 | /** \class BeamSpotFilter
|
---|
7 | *
|
---|
8 | * Extracts beam spot
|
---|
9 | *
|
---|
10 | * \author Michele Selvaggi
|
---|
11 | *
|
---|
12 | */
|
---|
13 |
|
---|
14 | #include "classes/DelphesModule.h"
|
---|
15 |
|
---|
16 | class TIterator;
|
---|
17 | class TObjArray;
|
---|
18 |
|
---|
19 | class BeamSpotFilter: public DelphesModule
|
---|
20 | {
|
---|
21 | public:
|
---|
22 |
|
---|
23 | BeamSpotFilter();
|
---|
24 | ~BeamSpotFilter();
|
---|
25 |
|
---|
26 | void Init();
|
---|
27 | void Process();
|
---|
28 | void Finish();
|
---|
29 |
|
---|
30 | private:
|
---|
31 |
|
---|
32 | Float_t fPassedOne;
|
---|
33 |
|
---|
34 | TIterator *fItInputArray; //!
|
---|
35 |
|
---|
36 | const TObjArray *fInputArray; //!
|
---|
37 |
|
---|
38 | TObjArray *fOutputArray; //!
|
---|
39 |
|
---|
40 | ClassDef(BeamSpotFilter, 1)
|
---|
41 | };
|
---|
42 |
|
---|
43 | #endif
|
---|
Note:
See
TracBrowser
for help on using the repository browser.