Marlin  1.17.1
 All Classes Namespaces Functions Variables Enumerations Friends Pages
ProcessorLoader.h
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 
26  typedef std::vector<void*> LibVec ;
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 
39  LibVec _libs{};
40 
41  private:
42  bool _loadError=false;
43  };
44 
45 } // end namespace marlin
46 #endif
Processor loader - loads shared libraries with marlin processors.
Definition: ProcessorLoader.h:23