CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
FileID.h
Go to the documentation of this file.
1 #ifndef DataFormats_Provenance_FileID_h
2 #define DataFormats_Provenance_FileID_h
3 
4 /*----------------------------------------------------------------------
5 
6 Holds a unique file identifier in string form.
7 
8 ----------------------------------------------------------------------*/
9 
10 #include <string>
11 
12 namespace edm {
13 
14  class FileID {
15  public:
16  FileID() : fid_() {}
17  explicit FileID(std::string const& id) : fid_(id) {}
18  bool isValid() const { return !fid().empty(); }
19  std::string const& fid() const {return fid_;}
20  private:
21  std::string fid_;
22  };
23 
24  inline
25  bool operator==(FileID const& lh, FileID const& rh) {return lh.fid() == rh.fid();}
26 
27  inline
28  bool operator!=(FileID const& lh, FileID const& rh) {return !(lh == rh);}
29 
30  std::ostream&
31  operator<<(std::ostream& os, FileID const& id);
32 }
33 #endif
34 
FileID(std::string const &id)
Definition: FileID.h:17
bool operator!=(debugging_allocator< X > const &, debugging_allocator< Y > const &)
bool int lh
Definition: SSEVec.h:55
std::string fid_
Definition: FileID.h:21
std::string const & fid() const
Definition: FileID.h:19
bool operator==(debugging_allocator< X > const &, debugging_allocator< Y > const &)
bool isValid() const
Definition: FileID.h:18
std::ostream & operator<<(std::ostream &ost, const HLTGlobalStatus &hlt)
Formatted printout of trigger tbale.
FileID()
Definition: FileID.h:16