Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-04-06 12:08:17

0001 #ifndef SiPixelLayoutParser_H
0002 #define SiPixelLayoutParser_H
0003 
0004 /** \class SiPixelLayoutParser
0005  * *
0006  *  Class that handles the SiPixel Quality Tests
0007  *
0008  *  \author Suchandra Dutta
0009  */
0010 
0011 #include <fstream>
0012 #include <map>
0013 #include <string>
0014 #include <vector>
0015 
0016 class SiPixelLayoutParser {
0017 public:
0018   // Constructor
0019   SiPixelLayoutParser();
0020 
0021   // Get list of Layouts for ME groups
0022   bool getAllLayouts(std::map<std::string, std::vector<std::string>> &me_names);
0023 
0024 private:
0025 };
0026 
0027 #endif