Analysis Software
Documentation for sPHENIX simulation software
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
ReadCalib.h
Go to the documentation of this file. Or view the newest version in sPHENIX GitHub for file ReadCalib.h
1 #ifndef DBTOOLS_READCALIB_H
2 #define DBTOOLS_READCALIB_H
3 
4 #include <cstdint>
5 #include <string>
6 
7 class ReadCalib
8 {
9  public:
10  ReadCalib() = default;
11  ~ReadCalib() = default;
12  int listGlobalTags();
13  int listPayloadTypes();
14  std::string getCalibrationFile(const std::string &type, uint64_t iov) const;
15  std::string getCalibrationFile(const std::string &globaltag, const std::string &type, uint64_t iov) const;
16 };
17 
18 #endif