Fork me on GitHub

source: git/modules/BeamSpotFilter.h@ ebf40fd

Last change on this file since ebf40fd 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: 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
16class TIterator;
17class TObjArray;
18
19class BeamSpotFilter: public DelphesModule
20{
21public:
22 BeamSpotFilter();
23 ~BeamSpotFilter();
24
25 void Init();
26 void Process();
27 void Finish();
28
29private:
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.