Luiza  v03-01
RootProcessor.h
1 #ifndef RootProcessor_h
2 #define RootProcessor_h 1
3 
4 #include "luiza/Processor.h"
5 
6 // root includes
7 
8 #include "TApplication.h"
9 
10 using namespace gloria ;
11 
12 
13 namespace luiza{
14 
16 
23  class RootProcessor : public Processor {
24 
25  public:
26 
27  RootProcessor( const std::string& typeName ) ;
28 
29  void InitializeRoot();
30 
31  protected:
32 
33  static TApplication* rootApl;
34 
35  };
36 
37 } // end namespace marlin
38 
39 #endif
namespace for data storing and exchange formats
Definition: GloriaAstrometry.h:15
Base class for Luiza processors.
Definition: Processor.h:55
Namespace for Luiza framework.
Definition: CCCollection.h:6
Base class for processors accessing input data.
Definition: RootProcessor.h:23