Back to home page

Project CMSSW displayed by LXR

 
 

    


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

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