CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Groups Pages
GeometryConfiguration.h
Go to the documentation of this file.
1 #ifndef GeometryConfiguration_H
2 #define GeometryConfiguration_H
3 
6 
7 class DDLParser;
8 
9 #include <string>
10 #include <vector>
11 #include <memory>
12 
21 public:
23 
24  ~GeometryConfiguration() override;
25 
27  void dumpFileList(void) const override;
28 
30  const std::vector<std::string>& getFileList(void) const override;
31 
33 
37  const std::vector<std::string>& getURLList(void) const override;
38 
40  bool doValidation() const override;
41 
43  std::string getSchemaLocation() const override;
44 
46  int readConfig(const std::string& filename) override;
47 
48 protected:
49 private:
50  std::vector<std::string> files_;
51  std::vector<std::string> relFiles_;
52  std::vector<std::string> emptyStrings_;
54 };
55 
56 #endif
const std::vector< std::string > & getURLList(void) const override
Return a list of urls as a vector of strings.
std::vector< std::string > relFiles_
int readConfig(const std::string &filename) override
Reads in a configuration file and parses it.
const std::vector< std::string > & getFileList(void) const override
Return a list of files as a vector of strings.
std::vector< std::string > files_
DDLParser is the main class of Detector Description Language Parser.
Definition: DDLParser.h:63
bool doValidation() const override
Return a flag whether to do xml validation or not.
DDLDocumentProvider provides a set of URLs and filenames.
GeometryConfiguration(const edm::ParameterSet &p)
tuple filename
Definition: lut2db_cfg.py:20
void dumpFileList(void) const override
Print out the list of files.
std::string getSchemaLocation() const override
Return the Schema Location.
std::vector< std::string > emptyStrings_