CMS 3D CMS Logo

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 
22  public:
24 
25  ~GeometryConfiguration() override;
26 
28  void dumpFileList(void) const override;
29 
31  const std::vector < std::string > & getFileList(void) const override;
32 
34 
38  const std::vector < std::string > & getURLList(void) const override;
39 
41  bool doValidation() const override;
42 
44  std::string getSchemaLocation() const override;
45 
47  int readConfig(const std::string& filename) override;
48 
49  protected:
50 
51  private:
52  std::vector< std::string > files_;
53  std::vector< std::string > relFiles_;
54  std::vector< std::string > emptyStrings_;
56 };
57 
58 #endif
bool doValidation() const override
Return a flag whether to do xml validation or not.
const std::vector< std::string > & getURLList(void) const override
Return a list of urls as a vector of strings.
std::vector< std::string > relFiles_
std::vector< std::string > emptyStrings_
int readConfig(const std::string &filename) override
Reads in a configuration file and parses it.
std::string getSchemaLocation() const override
Return the Schema Location.
DDLParser is the main class of Detector Description Language Parser.
Definition: DDLParser.h:63
void dumpFileList(void) const override
Print out the list of files.
DDLDocumentProvider provides a set of URLs and filenames.
GeometryConfiguration(const edm::ParameterSet &p)
std::vector< std::string > files_
const std::vector< std::string > & getFileList(void) const override
Return a list of files as a vector of strings.