Fork me on GitHub

source: git/modules/BeamSpotFilter.h@ 534d945

ImprovedOutputFile Timing dual_readout llp
Last change on this file since 534d945 was 64a5c3f, checked in by Michele Selvaggi <michele.selvaggi@…>, 8 years ago

added BeamSpotFilter module

  • Property mode set to 100644
File size: 620 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
23 BeamSpotFilter();
24 ~BeamSpotFilter();
25
26 void Init();
27 void Process();
28 void Finish();
29
30private:
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.