Last change
on this file since 4df491e 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:
746 bytes
|
Line | |
---|
1 | #ifndef VertexSorter_h
|
---|
2 | #define VertexSorter_h
|
---|
3 |
|
---|
4 | /** \class VertexSorter
|
---|
5 | *
|
---|
6 | *
|
---|
7 | * Sorts vertices according to different criteria
|
---|
8 | *
|
---|
9 | * \authors A. Hart, M. Selvaggi
|
---|
10 | *
|
---|
11 | *
|
---|
12 | */
|
---|
13 |
|
---|
14 | #include "classes/DelphesModule.h"
|
---|
15 |
|
---|
16 | #include <string>
|
---|
17 |
|
---|
18 | class TObjArray;
|
---|
19 | class TIterator;
|
---|
20 | class Candidate;
|
---|
21 |
|
---|
22 | class VertexSorter: public DelphesModule
|
---|
23 | {
|
---|
24 | public:
|
---|
25 | VertexSorter();
|
---|
26 | ~VertexSorter();
|
---|
27 |
|
---|
28 | void Init();
|
---|
29 | void Process();
|
---|
30 | void Finish();
|
---|
31 |
|
---|
32 | private:
|
---|
33 | TObjArray *fInputArray;
|
---|
34 |
|
---|
35 | TObjArray *fTrackInputArray;
|
---|
36 | TIterator *fItTrackInputArray;
|
---|
37 |
|
---|
38 | TObjArray *fJetInputArray;
|
---|
39 | TIterator *fItJetInputArray;
|
---|
40 |
|
---|
41 | TObjArray *fBeamSpotInputArray;
|
---|
42 | TIterator *fItBeamSpotInputArray;
|
---|
43 |
|
---|
44 | TObjArray *fOutputArray;
|
---|
45 |
|
---|
46 | std::string fMethod;
|
---|
47 |
|
---|
48 | ClassDef(VertexSorter, 1)
|
---|
49 | };
|
---|
50 |
|
---|
51 | #endif
|
---|
Note:
See
TracBrowser
for help on using the repository browser.