CMS 3D CMS Logo

ITimeIOV.h
Go to the documentation of this file.
1 #ifndef ITIMEIOV_H
2 #define ITIMEIOV_H
3 
4 #include <vector>
5 #include <stdexcept>
6 
10 
11 class ITimeIOV {
12  public:
13  virtual void fetchAt(IIOV* fillIOV, const Tm eventTm, ITag* tag) const noexcept(false) =0;
14 
15  virtual void fetchWithin(std::vector<IIOV*>* fillVec, const Tm beginTm, const Tm endTm, ITag* tag) const noexcept(false) =0;
16 
17 };
18 
19 #endif
Definition: IIOV.h:11
#define noexcept
Definition: ITag.h:11
virtual void fetchWithin(std::vector< IIOV * > *fillVec, const Tm beginTm, const Tm endTm, ITag *tag) const noexcept(false)=0
virtual void fetchAt(IIOV *fillIOV, const Tm eventTm, ITag *tag) const noexcept(false)=0
Definition: Tm.h:13