"MarlinReco"  1.32.0
Fox.h
1 #ifndef Fox_h
2 #define Fox_h 1
3 
4 #include "marlin/Processor.h"
5 #include "lcio.h"
6 #include <string>
7 #include <vector>
8 
9 using namespace lcio ;
10 using namespace marlin ;
11 
12 
13 
24 class Fox: public Processor {
25 
26  public:
27 
28  virtual Processor* newProcessor() { return new Fox ; }
29 
30 
31  Fox() ;
32 
36  virtual void init() ;
37 
40  virtual void processRunHeader( LCRunHeader* run ) ;
41 
44  virtual void processEvent( LCEvent * evt ) ;
45 
46 
47  virtual void check( LCEvent * evt ) ;
48 
49 
52  virtual void end() ;
53 
54 
55  protected:
56 
59  std::string _colName{};
62  std::vector<int> _momentsToCalculate{};
63  int _nRun{};
64  int _nEvt{};
65 } ;
66 
67 #endif
68 
69 
70 
Processor calculates Fox-Wolfram moments.
Definition: Fox.h:24