Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-04-06 12:15:29

0001 #ifndef Geometry_TrackerNumberingBuilder_ExtractStringFromDDD_H
0002 #define Geometry_TrackerNumberingBuilder_ExtractStringFromDDD_H
0003 
0004 #include "FWCore/ParameterSet/interface/types.h"
0005 #include <string>
0006 
0007 /**
0008  * Helper function to extract a string from a SpecPar; only returns the 
0009  * first one and complains if more than 1 is found.
0010  */
0011 template <class FilteredView>
0012 class ExtractStringFromDDD {
0013 public:
0014   static std::string getString(const std::string &, FilteredView *);
0015 };
0016 
0017 #endif