CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
PairSelector.h
Go to the documentation of this file.
1 #ifndef UtilAlgos_PairSelector_h
2 #define UtilAlgos_PairSelector_h
6 
7 namespace reco {
8  namespace modules {
9 
10  template<typename S1, typename S2>
11  struct ParameterAdapter<PairSelector<S1, S2> > {
13  return PairSelector<S1, S2>( modules::make<S1>( cfg ),
14  modules::make<S2>( cfg ) );
15  }
17  return PairSelector<S1, S2>( modules::make<S1>( cfg, iC ),
18  modules::make<S2>( cfg, iC ) );
19  }
20  };
21 
22  }
23 }
24 
25 #endif
26 
tuple cfg
Definition: looper.py:293
static PairSelector< S1, S2 > make(const edm::ParameterSet &cfg)
Definition: PairSelector.h:12
static PairSelector< S1, S2 > make(const edm::ParameterSet &cfg, edm::ConsumesCollector &iC)
Definition: PairSelector.h:16