CMS 3D CMS Logo

IRunIOV.h
Go to the documentation of this file.
1 #ifndef IRUNIOV_H
2 #define IRUNIOV_H
3 
4 #include <vector>
5 #include <stdexcept>
6 
8 
9 typedef int run_t;
10 
11 class IIOV;
12 
13 class IRunIOV {
14  public:
15  virtual void fetchAt(IIOV* fillIOV, const run_t run, ITag* tag) const noexcept(false) =0;
16 
17  virtual void fetchWithin(std::vector<IIOV>* fillVec, const run_t beginRun, const run_t endRun, ITag* tag) const noexcept(false) =0;
18 
19 };
20 
21 #endif
Definition: IIOV.h:11
int run_t
Definition: CaliIOV.h:11
virtual void fetchAt(IIOV *fillIOV, const run_t run, ITag *tag) const noexcept(false)=0
Definition: ITag.h:11
virtual void fetchWithin(std::vector< IIOV > *fillVec, const run_t beginRun, const run_t endRun, ITag *tag) const noexcept(false)=0
#define noexcept
int run_t
Definition: IRunIOV.h:9