CMS 3D CMS Logo

MakeModuleParams.h
Go to the documentation of this file.
1 #ifndef FWCore_Framework_MakeModuleParams_h
2 #define FWCore_Framework_MakeModuleParams_h
3 
11 
12 #include <memory>
13 
14 #include <string>
15 
16 namespace edm {
17  class ProcessConfiguration;
18  class ProductRegistry;
19  class PreallocationConfiguration;
20 
22  MakeModuleParams() : pset_(nullptr), reg_(nullptr), preallocate_(nullptr), processConfiguration_() {}
23 
25  ProductRegistry& reg,
26  PreallocationConfiguration const* prealloc,
27  std::shared_ptr<ProcessConfiguration const> processConfiguration)
28  : pset_(pset), reg_(&reg), preallocate_(prealloc), processConfiguration_(processConfiguration) {}
29 
33  std::shared_ptr<ProcessConfiguration const> processConfiguration_;
34  };
35 } // namespace edm
36 
37 #endif
ProductRegistry * reg_
MakeModuleParams(ParameterSet *pset, ProductRegistry &reg, PreallocationConfiguration const *prealloc, std::shared_ptr< ProcessConfiguration const > processConfiguration)
HLT enums.
PreallocationConfiguration const * preallocate_
std::shared_ptr< ProcessConfiguration const > processConfiguration_