Marlin  01.17.01
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
ProcessorLoader.h
Go to the documentation of this file.
1 #ifndef ProcessorLoader_h
2 #define ProcessorLoader_h 1
3 
4 #include "lcio.h"
5 
6 #include "LCIOSTLTypes.h"
7 
8 #include <string>
9 #include <vector>
10 
11 namespace marlin{
12 
13 
14 
24 
25 
27 
28  public:
29 
30  ProcessorLoader( lcio::StringVec::const_iterator first, lcio::StringVec::const_iterator last ) ;
31 
32  virtual ~ProcessorLoader() ;
33 
34  bool failedLoading() { return _loadError; };
35 
36 
37  protected:
38 
40 
41  private:
42  bool _loadError=false;
43  };
44 
45 } // end namespace marlin
46 #endif
ProcessorLoader(lcio::StringVec::const_iterator first, lcio::StringVec::const_iterator last)
Processor loader - loads shared libraries with marlin processors.
std::vector< void * > LibVec