Last change
on this file since c27c038 was 341014c, checked in by Pavel Demin <pavel-demin@…>, 6 years ago |
apply .clang-format to all .h, .cc and .cpp files
|
-
Property mode
set to
100644
|
File size:
618 bytes
|
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 | BeamSpotFilter();
|
---|
23 | ~BeamSpotFilter();
|
---|
24 |
|
---|
25 | void Init();
|
---|
26 | void Process();
|
---|
27 | void Finish();
|
---|
28 |
|
---|
29 | private:
|
---|
30 | Float_t fPassedOne;
|
---|
31 |
|
---|
32 | TIterator *fItInputArray; //!
|
---|
33 |
|
---|
34 | const TObjArray *fInputArray; //!
|
---|
35 |
|
---|
36 | TObjArray *fOutputArray; //!
|
---|
37 |
|
---|
38 | ClassDef(BeamSpotFilter, 1)
|
---|
39 | };
|
---|
40 |
|
---|
41 | #endif
|
---|
Note:
See
TracBrowser
for help on using the repository browser.