CMS 3D CMS Logo

PixelVersionAlias.h
Go to the documentation of this file.
1 #ifndef PixelVersionAlias_h
2 #define PixelVersionAlias_h
3 
4 #include <string>
5 
6 namespace pos{
8 
9  public:
11  path_=path;
13  alias_=alias;
14  }
15 
16  std::string path() {return path_;}
17  unsigned int version() {return version_;}
18  std::string alias() {return alias_;}
19 
20  private:
21 
23  unsigned int version_;
25  };
26 }
27 #endif
PixelVersionAlias(std::string path, unsigned int version, std::string alias)