Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-04-06 12:26:27

0001 #ifndef RecoLocalTracker_StripClusterizerAlgorithmFactory_h
0002 #define RecoLocalTracker_StripClusterizerAlgorithmFactory_h
0003 
0004 namespace edm {
0005   class ParameterSet;
0006   class ParameterSetDescription;
0007 }  // namespace edm
0008 class StripClusterizerAlgorithm;
0009 #include <memory>
0010 
0011 #include "FWCore/Framework/interface/ConsumesCollector.h"
0012 
0013 class StripClusterizerAlgorithmFactory {
0014 public:
0015   static std::unique_ptr<StripClusterizerAlgorithm> create(edm::ConsumesCollector&&, const edm::ParameterSet&);
0016   static void fillDescriptions(edm::ParameterSetDescription& clusterizer);
0017 };
0018 #endif