"MarlinReco"  1.32.0
Sphere.h
1 #ifndef MyProcessor_h
2 #define MyProcessor_h 1
3 
4 #include "marlin/Processor.h"
5 #include "lcio.h"
6 #include <string>
7 
8 
9 using namespace lcio ;
10 using namespace marlin ;
11 
12 
18 class Sphere: public Processor {
19 
20  public:
21 
22  virtual Processor* newProcessor() { return new Sphere ; }
23 
24 
25  Sphere() ;
26 
30  virtual void init() ;
31 
34  virtual void processRunHeader( LCRunHeader* run ) ;
35 
38  virtual void processEvent( LCEvent * evt ) ;
39 
40 
41  virtual void check( LCEvent * evt ) ;
42 
43 
46  virtual void end() ;
47 
48 
49  protected:
50 
53  std::string _colName{};
56  std::string _dumpobjectname{};
57  float _r{};
58  int _nRun{};
59  int _nEvt{};
60 } ;
61 
62 #endif
63 
64 
65 
Processor that calculates sphericity,aplanarity, C and D event parametres for detail explanation look...
Definition: Sphere.h:18