CMS 3D CMS Logo

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