Fork me on GitHub

source: git/modules/VertexSorter.h@ e09b9bf

Last change on this file since e09b9bf was 341014c, checked in by Pavel Demin <pavel-demin@…>, 5 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
18class TObjArray;
19class TIterator;
20class Candidate;
21
22class VertexSorter: public DelphesModule
23{
24public:
25 VertexSorter();
26 ~VertexSorter();
27
28 void Init();
29 void Process();
30 void Finish();
31
32private:
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.