CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
PixelVersionAlias.h
Go to the documentation of this file.
1 #ifndef PixelVersionAlias_h
2 #define PixelVersionAlias_h
3 
4 namespace pos{
6 
7  public:
8  PixelVersionAlias(std::string path, unsigned int version, std::string alias) {
9  path_=path;
11  alias_=alias;
12  }
13 
14  std::string path() {return path_;}
15  unsigned int version() {return version_;}
16  std::string alias() {return alias_;}
17 
18  private:
19 
20  std::string path_;
21  unsigned int version_;
22  std::string alias_;
23  };
24 }
25 #endif
PixelVersionAlias(std::string path, unsigned int version, std::string alias)